当前位置:Gxlcms > PHP教程 > php获取url字符串截取路径的文件名和扩展名的函数

php获取url字符串截取路径的文件名和扩展名的函数

时间:2021-07-01 10:21:17 帮助过:19人阅读

php获取文件名
代码如下:

function retrieve($url)
{
preg_match('/\/([^\/]+\.[a-z]+)[^\/]*$/',$url,$match);
return $match[1];
}

php获取文件扩展名
代码如下:

<?php
function getExt($url)
{
$path=parse_url($url);
$str=explode('.',$path['path']);
return $str[1];
}
echo getExt('http://tools.jb51.net/abc/de/fg.php?id=1');
?>

人气教程排行