如何在没有文件扩展名的情况下显示文件?
目前我收到了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 />';
}
}
}
答案 0 :(得分:1)
由于PHP 5.2.0 pathinfo
也可以这样做:
$bareName = pathinfo($path_to_file, PATHINFO_FILENAME);
答案 1 :(得分:0)
$text = "filename.test.php";
echo substr($text, 0, strrpos($text, ".")); //filename.test