Scandir没有文件扩展名

时间:2013-02-28 22:16:42

标签: php scandir

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

        }
    }
}

2 个答案:

答案 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