php URL文字列はパスのファイル名と拡張子をインターセプトします
関数取得($url)
{
preg_match('//([^/]+.[a-z]+)[^/]*$/',$url,$match);
return $match[1] ;
}
function getExt($url)
$path=parse_url($url);
return $ str[1];
echo getExt('http://www.bkjia.com//fg.php?id=1');
http://www.bkjia.com/PHPjc/364501.html