阅读量:1
您可以使用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()
函数也适用于本地文件路径。