SplFileInfo::getBasename()函數是PHP中的標準PHP庫(SPL)的內置函數,用於獲取文件的基本名稱。
用法:
string SplFileInfo::getBasename( $suffix )
參數:該函數接受可選的單個參數$suffix。用於指定基本名稱。
返回值:此函數返回基本名稱,不包含路徑信息。
以下示例程序旨在說明PHP中的SplFileInfo::getBasename()函數:
程序1:
<?php
// PHP Program to illustrate
// Splfileinfo::getBasename() function
// Create new SPlFileInfo Object
$file = new SplFileInfo('html/gfg.txt');
// Print result
var_dump($file->getBasename());
?>
輸出:
string(7) "gfg.txt"
程序2:
<?php
// PHP program to use array to check
// multiple files
$GFG = array (
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"/home/rajvir/Desktop/gfg.txt",
"/var/www/html/gfg.php",
"demo.php"
);
foreach ($GFG as &$file) {
// Create new SPlFileInfo Object
$file = new SplFileInfo($file);
// Print result
var_dump($file->getBasename());
}
?>
輸出:
string(9) "dummy.php" string(7) "gfg.txt" string(7) "gfg.php" string(8) "demo.php"
參考: http://php.net/manual/en/splfileinfo.getbasename.php
相關用法
- PHP DirectoryIterator getBasename()用法及代碼示例
- PHP SplFileInfo getCTime()用法及代碼示例
- PHP SplFileInfo getATime()用法及代碼示例
- PHP SplFileInfo getSize( )用法及代碼示例
- PHP SplFileInfo getRealPath()用法及代碼示例
- PHP SplFileInfo getPerms()用法及代碼示例
- PHP SplFileInfo getMTime()用法及代碼示例
- PHP SplFileInfo getOwner()用法及代碼示例
- PHP SplFileInfo getPath()用法及代碼示例
- PHP SplFileInfo::getPathInfo()用法及代碼示例
- PHP SplFileInfo getInode()用法及代碼示例
- PHP SplFileInfo getFileInfo()用法及代碼示例
- PHP SplFileInfo getFilename()用法及代碼示例
- PHP SplFileInfo getGroup()用法及代碼示例
- PHP SplFileInfo getPathname()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileInfo getBasename() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。