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; }