Get the created datetime of a file

I am using an upload file and I want to get the create datetime of that file.
I am using : filemtime($file)); but instead only recover the last modified file.
I am searching on the web, but I don’t find any php function to do that.

Thanks.

Luis, filemtime é a data de última modificação do arquivo (e não de criação).

Poucos sistemas de arquivos guardam a data de criação do mesmo. “stat” só devolve data de último acesso (atime), última modificação de conteúdo (mtime) e última modificação do arquivo (dono, grupo, permissão, conteúdo, etc) (ctime).

Tente usar a função Stat, com os retornos ‘atime’, ‘mtime’, ‘ctime’:
https://www.php.net/manual/en/function.stat.php

I only need the date which show with ls command. For example I upload a file with its date 2019-10-10. It stored in the directory with this date, but when I use mtime/ctime/, it return the date when I uploaded th file

I tried with stat but I can not convet into date

thanks