PHP로 전체 경로에서 파일 이름을 얻으려면 어떻게해야합니까?


229

예를 들어 어떻게해야합니까 Output.map

...에서

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

PHP로?

답변:


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 ()에 버그가 있습니다.
Sun Junwen

1
Sun에 감사합니다. 앱을 해외에서 사용하기 때문에 몇 시간 동안 버그를 제거했습니다.
SilentSteel

11
나는 제안 pathinfo을 통해 basenameMetafaniel 아래에 게시한다. pathinfo()경로의 일부가있는 배열을 제공합니다. 또는 여기서는 파일 이름을 구체적으로 요청할 수 있습니다. 따라서 PHP Pathinfo 문서를pathinfo('/var/www/html/index.php', PATHINFO_FILENAME) 반환해야 'index.php' 합니다
OnethingSimple

7
@OnethingSimple 문서를 다시 확인하십시오 ... 직관적이지만 카운터 PATHINFO_BASENAME가 가득 차면 전체를 원할 것 index.php입니다. PATHINFO_FILENAME당신에게 줄 것이다 index.
levigroker

1
어쨌든, 유니 코드 호환 방법의 경우, mb_substr($filepath,mb_strrpos($filepath,'/',0,'UTF-16LE'),NULL,'UTF-16LE')UTF-16LE를 파일 시스템이 사용하는 문자 세트로 대체하십시오 (NTFS 및
ExFAT

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
이것은 좋은 답변이었습니다.
Wiki Babu

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

10

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"


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를 선호합니다. 우분투에서`\`는 직접 구분 기호가 아니며 기본 이름은 영향을 미치지 않습니다.
아담


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
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.