例如,我如何获得Output.map
从
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
用PHP?
答案 0 :(得分:403)
您正在寻找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"
?>
答案 1 :(得分:60)
我使用函数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'] . '/' . $xmlSchema['basename'];
答案 2 :(得分:12)
basename
函数可以为您提供所需内容:
给定一个包含a路径的字符串 文件,这个函数会返回 文件的基本名称。
例如,引用手册的页面:
<?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"
答案 3 :(得分:9)
使用 SplFileInfo :
SplFileInfo SplFileInfo类提供面向对象的高级别 单个文件的信息接口。
参考:http://php.net/manual/en/splfileinfo.getfilename.php
$info = new SplFileInfo('/path/to/foo.txt');
var_dump($info->getFilename());
o / p:string(7)“foo.txt”
答案 4 :(得分:8)
有多种方法可以获取文件名和扩展名。您可以使用以下易于使用的方法。
$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
答案 5 :(得分:7)
$filename = basename($path);
答案 6 :(得分:7)
basename()在处理中文等亚洲字符时有错误。
我用这个:
function get_basename($filename)
{
return preg_replace('/^.+[\\\\\\/]/', '', $filename);
}
答案 7 :(得分:7)
试试这个:
echo basename($_SERVER["SCRIPT_FILENAME"], '.php')
答案 8 :(得分:4)
您可以使用basename()功能。
答案 9 :(得分: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'
答案 10 :(得分: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, '?'));
?>
答案 11 :(得分:1)
Basename对我不起作用。我从表单(文件)中获取了文件名。在Google Chrome(Mac OS X v10.7(Lion))中,文件变量变为:
c:\fakepath\file.txt
当我使用时:
basename($_GET['file'])
它返回:
c:\fakepath\file.txt
所以在这种情况下,孙俊文的答案效果最好。
在Firefox上,文件的变量不包含此伪路径。
答案 12 :(得分: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
)
答案 13 :(得分: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>
答案 14 :(得分:0)
$image_path = "F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map";
$arr = explode('\\',$image_path);
$name = end($arr);