您可以使用PHP的內置函數pathinfo()
來獲取URL文件的擴展名。
以下是一個示例代碼:
$url = 'http://www.example.com/path/to/file.html';
$extension = pathinfo($url, PATHINFO_EXTENSION);
echo $extension; // 輸出:html
在上面的代碼中,pathinfo()
函數接受兩個參數:URL和PATHINFO_EXTENSION
常量。PATHINFO_EXTENSION
常量告訴pathinfo()
函數只返回文件的擴展名部分。
請注意,pathinfo()
函數也適用于本地文件路徑。