SplFileInfo::getFilename()函數是PHP中的標準PHP庫(SPL)的內置函數,用於獲取文件名。
用法:
string SplFileInfo::getFilename( void )
參數:該函數不接受任何參數。
返回值:該函數返回一個包含文件名的字符串。
以下示例程序旨在說明PHP中的SplFileInfo::getFilename()函數:
示例1:
<?php
// PHP Program to illustrate
// Splfileinfo::getFilename() function
// Create new SPlFileInfo Object
$file = new SplFileInfo("gfg.txt");
// Print result
echo( $file->getFilename());
?>
輸出:
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.c"
);
foreach ($GFG as $file_name) {
// Create new SPlFileInfo Object
$file = new SplFileInfo($file_name);
// Print result
echo($file->getFilename());
echo "</br>";
}
?>
輸出:
dummy.phpgfg.txtgfg.phpdemo.c
參考:http://php.net/manual/en/splfileinfo.getfilename.php
相關用法
- PHP Imagick getFilename()用法及代碼示例
- PHP DirectoryIterator getFilename()用法及代碼示例
- PHP ReflectionClass getFileName()用法及代碼示例
- PHP Gmagick getfilename()用法及代碼示例
- PHP SplFileInfo getExtension()用法及代碼示例
- PHP SplFileInfo getCTime()用法及代碼示例
- PHP SplFileInfo getFileInfo()用法及代碼示例
- PHP SplFileInfo getBasename()用法及代碼示例
- PHP SplFileInfo getGroup()用法及代碼示例
- PHP SplFileInfo getPathname()用法及代碼示例
- PHP SplFileInfo::getPathInfo()用法及代碼示例
- PHP SplFileInfo getPath()用法及代碼示例
- PHP SplFileInfo getOwner()用法及代碼示例
- PHP SplFileInfo getMTime()用法及代碼示例
- PHP SplFileInfo getSize( )用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileInfo getFilename() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。