0

Windowsでフォルダ/日付で画像を分類するための小さなphpスクリプトを作成しました。すべてがうまく機能していて、ファイルは良い場所に移動しますが、それは私の「作成日」を変更します。

私は非常に単純なphpcopy()関数を使用しています。

touch()+ filectimeを使用しましたが、ファイルの作成日を変更できません

何か案が ?

4

1 に答える 1

0

php.netから:

It's worth noting that copy() sets the destination file's last modified time/date.

これを使用することの問題は何ですか?

clearstatcache();
$oldstamp = filemtime("file.txt");
copy("file.txt","newfolder/file.txt");
touch("newfolder/file.txt",$oldstamp);
于 2012-06-05T16:27:06.120 に答える