0
如何使用preg_match從URL獲取查詢字符串?使用正則表達式解析查詢字符串的PHP
http://www.example.com/imgres?imgurl=http://www.example.com/images/blue-diamond-rings.jpg
我要如何使用preg_matches
從上面的網址 'imgUrl的'?
如何使用preg_match從URL獲取查詢字符串?使用正則表達式解析查詢字符串的PHP
http://www.example.com/imgres?imgurl=http://www.example.com/images/blue-diamond-rings.jpg
我要如何使用preg_matches
從上面的網址 'imgUrl的'?
PHP具有解析URL和查詢字符串的功能,您不需要使用正則表達式。
$parts = parse_url("http://www.mysite.com/imgres?imgurl=http://www.mysite.com/images/blue-diamond-rings.jpg");
$query_string = $parts['query'];
parse_str($query_string, $output);
echo $output['imgurl'];
感謝您的幫助 – 2010-12-21 14:13:55