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を使用しているときにサイトに保存されているファイルを見つけ、その名前の一部でファイルを見つける必要があります。PHPファイルは拡張子を認識できないため、名前全体で見つけることはできません。pngかもしれないしjpgかもしれない。
それ、どうやったら出来るの?
あなたは見たいと思うでしょうglob。
glob
あなたが使用することができますglob()
glob()
次に例を示します。
<?php foreach(glob("path/to/files/imagename.*") as $file) { // do something with the file here echo $file; }