php怎么獲取文件擴(kuò)展名

PHP
小億
74
2023-11-02 11:01:10

要獲取文件擴(kuò)展名,可以使用PHP的pathinfo()函數(shù)或者explode()函數(shù)。

使用pathinfo()函數(shù):

$file = 'example.txt';
$ext = pathinfo($file, PATHINFO_EXTENSION);
echo $ext; // 輸出:txt

使用explode()函數(shù):

$file = 'example.txt';
$ext = explode('.', $file);
$ext = end($ext);
echo $ext; // 輸出:txt

以上兩種方法都可以獲取文件的擴(kuò)展名。

0