首页  >  文章  >  php教程  >  PHP用正则表达式取出http://开头的所有url地址

PHP用正则表达式取出http://开头的所有url地址

WBOY
WBOY原创
2016-06-21 08:57:272313浏览

用正则表达式求出内容里面的以http://开头的所有url地址

<?php <br/>$str ='<a href="http://localhost">sina.com</a><a href="http://www.olders.net">健康网</a><a href="/aaa.html">sina.com</a>';<br>preg_match_all("/href=\"([^\"]+)/i", $str, $match);<br>$urls = $match[1];<br>$is_url = $_SERVER['SERVER_NAME'];<br>foreach($urls as $value)<br>{<br>    if(strstr($value, $is_url))  continue;<br>    echo $value . "<br>";<br>}<br>?>



声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn