首頁  >  文章  >  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