Php取扩展名
/**
* 取扩展名
*/
function getext($url){
$base = parse_url($url);
$name = basename($base['path']);
$ext = explode('.',$name);
var_dump($ext[count($ext)-1]);
}
$url = 'https://www.baidu.com/game/tkdz.php?id=1.5';
getext($url);
本文共 281 字,大约阅读时间需要 1 分钟。
Php取扩展名
/**
* 取扩展名
*/
function getext($url){
$base = parse_url($url);
$name = basename($base['path']);
$ext = explode('.',$name);
var_dump($ext[count($ext)-1]);
}
$url = 'https://www.baidu.com/game/tkdz.php?id=1.5';
getext($url);
转载于:https://www.cnblogs.com/lovebing/p/6737411.html