如何在没有文件扩展名的情况下显示文件?目前我得到一个文件,logo.png
但我只需要文件名logo
。
if (is_dir($dir_path)) {
$files = scandir($dir_path);
foreach($files as $file) {
if ( !in_array( $file, $exclude_all ) ) {
$path_to_file = $dir_path . $file;
$extension = pathinfo ( $path_to_file, PATHINFO_EXTENSION );
$file_url = $dir_url . $file;
echo 'Path to file: ' . $path_to_file . '<br />';
echo 'Extension: ' . $extension . '<br />';
echo 'URL: ' . $file_url . '<br />';
}
}
}