共计 290 个字符,预计需要花费 1 分钟才能阅读完成。
要获取文件扩展名,可以使用 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
以上两种方法都可以获取文件的扩展名。
丸趣 TV 网 – 提供最优质的资源集合!
正文完