Answers:
您正在寻找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"
?>
pathinfo
其basename
作为Metafaniel的下方发布。pathinfo()
将为您提供路径部分的数组。或者在这种情况下,您可以专门要求输入文件名。因此pathinfo('/var/www/html/index.php', PATHINFO_FILENAME)
应返回'index.php'
PHP Pathinfo文档
PATHINFO_BASENAME
获取全部信息index.php
。PATHINFO_FILENAME
会给你的index
。
mb_substr($filepath,mb_strrpos($filepath,'/',0,'UTF-16LE'),NULL,'UTF-16LE')
只需将UTF-16LE替换为文件系统使用的任何字符集(NTFS和ExFAT使用UTF16)
我使用函数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'];
该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"
有几种获取文件名和扩展名的方法。您可以使用以下易于使用的一种。
$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
使用SplFileInfo:
SplFileInfo SplFileInfo类为单个文件的信息提供了一个高级的面向对象的接口。
参考:http : //php.net/manual/zh/splfileinfo.getfilename.php
$info = new SplFileInfo('/path/to/foo.txt');
var_dump($info->getFilename());
o / p:string(7)“ foo.txt”
处理诸如中文之类的亚洲字符时,basename()有一个错误。
我用这个:
function get_basename($filename)
{
return preg_replace('/^.+[\\\\\\/]/', '', $filename);
}
为此,我建议使用内置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'
您可以使用basename()函数。
<?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>
这很简单。例如:
<?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
)
$image_path = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map";
$arr = explode('\\',$image_path);
$name = end($arr);