Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsでフォルダ/日付で画像を分類するための小さなphpスクリプトを作成しました。すべてがうまく機能していて、ファイルは良い場所に移動しますが、それは私の「作成日」を変更します。
私は非常に単純なphpcopy()関数を使用しています。
touch()+ filectimeを使用しましたが、ファイルの作成日を変更できません
何か案が ?
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);