0

我有这个正则表达式,它对 url 正常工作,但是当我使用包含 @ 的 url 时,它在 @ 之后不显示任何内容。我如何编辑正则表达式以显示完整的网址

    <?php

$regex = "/(https?\:\/\/|\s)[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})(\/+[a-z0-9_.\:\;-]*)*(\?[\&\%\|\+a-z0-9_=,\.\:\;-]*)?([\&\%\|\+&a-z0-9_=,\:\;\.-]*)([\!\#\/\&\%\|\+a-z0-9_=,\:\;\.-]*)}*/i";


$url = "http://www.flickr.com/photos/16506140@N05/8376411748/in/photostream/";

preg_match_all($regex, $url, $matches);

echo'<pre>';
print_r($matches);
echo '<pre>';

?>

演示http://codepad.viper-7.com/oVHcdN

4

1 回答 1

3

如果您想访问 url 的多个部分,强烈建议您使用该函数parse_url()而不是自定义正则表达式解决方案:

$url = "http://www.flickr.com/photos/16506140@N05/8376411748/in/photostream/";
var_dump(parse_url($url));

输出:

array(3) {
  ["scheme"]=>
  string(4) "http"
  ["host"]=>
  string(14) "www.flickr.com"
  ["path"]=>
  string(47) "/photos/16506140@N05/8376411748/in/photostream/"
}
于 2013-10-28T10:05:03.033 回答