如何使用PHP从完整路径获取文件名?


229

例如,我如何获得 Output.map

F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map

用PHP?

Answers:


451

您正在寻找basename

PHP手册中的示例:

<?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"
?>

29
处理诸如中文之类的亚洲字符时,basename()有一个错误。
孙俊文

1
感谢Sun,由于我的应用程序将在国外使用,您才为我节省了数小时的bug消除。
SilentSteel

11
我建议将pathinfobasename作为Metafaniel的下方发布。pathinfo()将为您提供路径部分的数组。或者在这种情况下,您可以专门要求输入文件名。因此pathinfo('/var/www/html/index.php', PATHINFO_FILENAME)应返回'index.php' PHP Pathinfo文档
OnethingSimple 2015年

7
@OnethingSimple再次检查文档...虽然很直观,但是您将需要PATHINFO_BASENAME获取全部信息index.phpPATHINFO_FILENAME会给你的index
levigroker

1
在任何情况下,对于与Unicode兼容的方法, mb_substr($filepath,mb_strrpos($filepath,'/',0,'UTF-16LE'),NULL,'UTF-16LE')只需将UTF-16LE替换为文件系统使用的任何字符集(NTFS和ExFAT使用UTF16)
hanshenrik

68

我使用函数PATHINFO创建了一个数组,其中包含部分路径供您使用!例如,您可以这样做:

<?php
    $xmlFile = pathinfo('/usr/admin/config/test.xml');

    function filePathParts($arg1) {
        echo $arg1['dirname'], "\n";
        echo $arg1['basename'], "\n";
        echo $arg1['extension'], "\n";
        echo $arg1['filename'], "\n";
    }

    filePathParts($xmlFile);
?>

这将返回:

/usr/admin/config
test.xml
xml
test

自PHP 5.2.0起就可以使用此功能!

然后,您可以根据需要操纵所有零件。例如,要使用完整路径,可以执行以下操作:

$fullPath = $xmlFile['dirname'] . '/' . $xmlFile['basename'];

1
这对我有帮助,很好的答案。
维基百科

12

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"
?>

或者,在您的情况下:

$full = 'F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map';
var_dump(basename($full));

你会得到:

string(10) "Output.map"

12

有几种获取文件名和扩展名的方法。您可以使用以下易于使用的一种。

$url = 'http://www.nepaltraveldoor.com/images/trekking/nepal/annapurna-region/Annapurna-region-trekking.jpg';
$file = file_get_contents($url); // To get file
$name = basename($url); // To get file name
$ext = pathinfo($url, PATHINFO_EXTENSION); // To get extension
$name2 =pathinfo($url, PATHINFO_FILENAME); // File name without extension

@peter Mortensen感谢您的支持
Khadka Pushpendra


9

试试这个:

echo basename($_SERVER["SCRIPT_FILENAME"], '.php') 

8

处理诸如中文之类的亚洲字符时,basename()有一个错误。

我用这个:

function get_basename($filename)
{
    return preg_replace('/^.+[\\\\\\/]/', '', $filename);
}

我认为它不是错误,在文档中提到了:Caution basename() is locale aware, so for it to see the correct basename with multibyte character paths, the matching locale must be set using the setlocale() function. 。但是我也更喜欢使用preg_replace,因为目录分隔符在操作系统之间是不同的。在Ubuntu上,\不是直接的分隔符,并且基名对此没有任何影响。
亚当

7
$filename = basename($path);

4

为此,我建议使用内置DIRECTORY_SEPARATOR常量以及explode(delimiter, string)将路径分隔为多个部分,然后简单地摘除所提供数组中的最后一个元素。

例:

$path = 'F:\Program Files\SSH Communications Security\SSH SecureShell\Output.map'

//Get filename from path
$pathArr = explode(DIRECTORY_SEPARATOR, $path);
$filename = end($pathArr);

echo $filename;
>> 'Output.map'


1

为了从URI中获取确切的文件名,我将使用以下方法:

<?php
    $file1 =basename("http://localhost/eFEIS/agency_application_form.php?formid=1&task=edit") ;

    //basename($_SERVER['REQUEST_URI']); // Or use this to get the URI dynamically.

    echo $basename = substr($file1, 0, strpos($file1, '?'));
?>

0
<?php

  $windows = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map";

  /* str_replace(find, replace, string, count) */
  $unix    = str_replace("\\", "/", $windows);

  print_r(pathinfo($unix, PATHINFO_BASENAME));

?> 

body, html, iframe { 
  width: 100% ;
  height: 100% ;
  overflow: hidden ;
}
<iframe src="https://ideone.com/Rfxd0P"></iframe>


0

这很简单。例如:

<?php
    function filePath($filePath)
    {
        $fileParts = pathinfo($filePath);

        if (!isset($fileParts['filename']))
        {
            $fileParts['filename'] = substr($fileParts['basename'], 0, strrpos($fileParts['basename'], '.'));
        }
        return $fileParts;
    }

    $filePath = filePath('/www/htdocs/index.html');
    print_r($filePath);
?>

输出将是:

Array
(
    [dirname] => /www/htdocs
    [basename] => index.html
    [extension] => html
    [filename] => index
)

0
$image_path = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map";
$arr = explode('\\',$image_path);
$name = end($arr);

请描述您做了哪些更改以及更改原因,以帮助其他人识别问题并理解此答案
FZ
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.