要獲取文件擴展名,可以使用PHP的pathinfo()函數或者explode()函數。
使用pathinfo()函數:
$file = 'example.txt';
$ext = pathinfo($file, PATHINFO_EXTENSION);
echo $ext; // 輸出:txt
使用explode()函數:
$file = 'example.txt';
$ext = explode('.', $file);
$ext = end($ext);
echo $ext; // 輸出:txt
以上兩種方法都可以獲取文件的擴展名。