예를 들어 어떻게해야합니까 Output.map
…에서
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
PHP로?
답변
찾고 있습니다 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
당신이 사용할 경로의 일부로 배열을 만드는 함수 를 사용하여 이것을 수행했습니다 ! 예를 들어 다음을 수행 할 수 있습니다.
<?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/en/splfileinfo.getfilename.php
$info = new SplFileInfo('/path/to/foo.txt');
var_dump($info->getFilename());
o / p : 문자열 (7) “foo.txt”
답변
이 시도:
echo basename($_SERVER["SCRIPT_FILENAME"], '.php')
답변
중국어와 같은 아시아 문자를 처리 할 때 basename ()에 버그가 있습니다.
나는 이것을 사용한다 :
function get_basename($filename)
{
return preg_replace('/^.+[\\\\\\/]/', '', $filename);
}