Na przykład, jak mogę uzyskać Output.map
z
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
z PHP?
Na przykład, jak mogę uzyskać Output.map
z
F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map
z PHP?
Odpowiedzi:
Szukasz basename
.
Przykład z podręcznika 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
na basename
jak Metafaniel pisał poniżej. pathinfo()
da ci tablicę z częściami ścieżki. Lub w tym przypadku możesz po prostu poprosić o nazwę pliku. Więc pathinfo('/var/www/html/index.php', PATHINFO_FILENAME)
powinien zwrócić 'index.php'
dokumentację PHP Pathinfo
PATHINFO_BASENAME
uzyskać pełny index.php
. PATHINFO_FILENAME
da ci index
.
mb_substr($filepath,mb_strrpos($filepath,'/',0,'UTF-16LE'),NULL,'UTF-16LE')
- po prostu zastąp UTF-
Zrobiłem to za pomocą funkcji, PATHINFO
która tworzy tablicę z częściami ścieżki do użycia! Na przykład możesz to zrobić:
<?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);
?>
Zwróci to:
/usr/admin/config
test.xml
xml
test
Korzystanie z tej funkcji jest dostępne od PHP 5.2.0!
Następnie możesz manipulować wszystkimi częściami według potrzeb. Na przykład, aby użyć pełnej ścieżki, możesz to zrobić:
$fullPath = $xmlFile['dirname'] . '/' . $xmlFile['basename'];
Ta basename
funkcja powinna dać ci to, czego chcesz:
Biorąc pod uwagę ciąg znaków zawierający ścieżkę do pliku, funkcja zwróci podstawową nazwę pliku.
Na przykład, cytując stronę podręcznika:
<?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"
?>
Lub w twoim przypadku:
$full = 'F:\Program Files\SSH Communications Security\SSH Secure Shell\Output.map';
var_dump(basename($full));
Dostaniesz:
string(10) "Output.map"
Istnieje kilka sposobów uzyskania nazwy pliku i rozszerzenia. Możesz użyć następującego, który jest łatwy w użyciu.
$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
Dzięki SplFileInfo :
SplFileInfo Klasa SplFileInfo oferuje obiektowy interfejs wysokiego poziomu do informacji dla pojedynczego pliku.
Patrz : 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”
basename () ma błąd podczas przetwarzania znaków azjatyckich, takich jak chiński.
Używam tego:
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.
. Ale wolę też używać preg_replace, ponieważ separator katalogów różni się w zależności od systemu operacyjnego. Na Ubuntu `\ 'nie jest separatorem directoy i basename nie będzie na niego wpływał.
Aby to zrobić w jak najmniejszej liczbie wierszy, sugerowałbym użycie wbudowanej DIRECTORY_SEPARATOR
stałej wraz zexplode(delimiter, string)
aby rozdzielić ścieżkę na części, a następnie po prostu oderwać ostatni element w podanej tablicy.
Przykład:
$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'
Możesz użyć funkcji basename () .
Aby uzyskać dokładną nazwę pliku z URI, użyłbym tej metody:
<?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, '?'));
?>
<?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>
To proste. Na przykład:
<?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);
?>
Dane wyjściowe będą:
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);