SplFileInfo::getExtension()是一個PHP函式,它用於獲取SplFileInfo物件所代表的檔案的副檔名。
用法: SplFileInfo::getExtension()方法沒有引數,它只能在SplFileInfo物件上呼叫。
語法: string SplFileInfo::getExtension ( void )
引數: 該函式沒有引數。
返回值: 該方法返回一個字串,表示檔案的副檔名。如果檔案沒有副檔名,則返回空字串。
示例:
$file = new SplFileInfo('example.txt');
$extension = $file->getExtension();
echo $extension; // 輸出:txt
$file = new SplFileInfo('image.jpg');
$extension = $file->getExtension();
echo $extension; // 輸出:jpg
$file = new SplFileInfo('document');
$extension = $file->getExtension();
echo $extension; // 輸出:空字串
在上面的示例中,我們首先建立了一個SplFileInfo物件,然後使用getExtension()方法獲取檔案的副檔名。如果檔案有副檔名,則返回副檔名的字串,否則返回空字串。