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スニペットを使用して、ディレクトリ内のすべてのpdfを表示しています。このコードを変更してディレクトリを指定し、ファイル名のみを表示するにはどうすればよいですか?
foreach (glob("directory/sub-directory/sub-subdirectory/*.pdf") as $filename) { echo "$filename <BR>\n"; }
これはどう:
$shortname = basename($filename); echo "$shortname <BR />\n";
basename関数を使用することになります。