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.
PHPでタイプを知らずにファイルを削除できますか? 私はこのようなことをしたい:
unlink('../gallery/images/pic23.?)
どうすればこれを実行できますか? 前もって感謝します
次のように、すべてのファイルを見つけglob()て個別に削除できます。
glob()
foreach( glob( '../gallery/images/pic23.*') as $file) { unlink( $file); }