1

如何在没有文件扩展名的情况下显示文件?目前我得到一个文件,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 />';

        }
    }
}
4

2 回答 2

1

由于 PHP 5.2.0pathinfo也可以做到这一点:

$bareName = pathinfo($path_to_file, PATHINFO_FILENAME);
于 2013-02-28T22:22:42.340 回答
0
$text = "filename.test.php";

echo substr($text, 0, strrpos($text, ".")); //filename.test
于 2013-02-28T22:29:41.477 回答