我有这样的PHP代码:

function ShowFileExtension($filepath)
{
    preg_match('/[^?]*/', $filepath, $matches);
    $string = $matches[0];

    $pattern = preg_split('/\./', $string, -1, PREG_SPLIT_OFFSET_CAPTURE);

    if(count($pattern) > 1)
    {
        $filenamepart = $pattern[count($pattern)-1][0];
        preg_match('/[^?]*/', $filenamepart, $matches);
        return strtolower($matches[0]);
    }
}

如果我有一个名为my.zip的文件,这个函数返回。zip。

我想做相反的事情,我想让函数返回不带扩展名的my。

文件只是变量中的字符串。


当前回答

作为pathinfo()的替代,您可以使用

basename() -返回路径的文件名组件

PHP手册示例

$path = "/home/httpd/html/index.php";
$file = basename($path);         // $file is set to "index.php"
$file = basename($path, ".php"); // $file is set to "index"

你必须知道扩展提前删除它。

然而,由于您的问题表明您需要获得扩展名和基名,我认为Pekka的答案是最有用的,因为它将为您提供有关路径和文件的任何信息,只需一个本地函数。

其他回答

不知道扩展名的文件名:

$basename = substr($filename, 0, strrpos($ fi里程碑,");

文件扩展名提取:

File Name = subrotobiswas.jpg
$fileExtension = pathinfo($_FILES["fileToUpload"]["name"], PATHINFO_EXTENSION); //Output: jpg
$newNameOfFileWithoutExtension = basename( $_FILES["fileToUpload"]["name"], $fileExtension ); //Output: subrotobiswas
$fullFileName = $newNameOfFileWithoutExtension . "." .$fileExtension; // Output: subrotobiswas.jpg

在我的例子中,我使用下面的方法。我不关心它的延伸是什么。: D 我想这对你有帮助

$exploded_filepath = explode(".", $filepath_or_URL);
$extension = end($exploded_filepath);
echo basename($filepath_or_URL, ".".$extension ); //will print out the the name without extension.

在1行中只返回没有任何扩展名的文件名:

$path = "/etc/sudoers.php";    
print array_shift(explode(".", basename($path)));
// will print "sudoers"

$file = "file_name.php";    
print array_shift(explode(".", basename($file)));
// will print "file_name"

作为pathinfo()的替代,您可以使用

basename() -返回路径的文件名组件

PHP手册示例

$path = "/home/httpd/html/index.php";
$file = basename($path);         // $file is set to "index.php"
$file = basename($path, ".php"); // $file is set to "index"

你必须知道扩展提前删除它。

然而,由于您的问题表明您需要获得扩展名和基名,我认为Pekka的答案是最有用的,因为它将为您提供有关路径和文件的任何信息,只需一个本地函数。