php 正则匹配 两端中文之间内容
这块正则匹配出啊标签的连接怎么写啊帮忙写下呗preg_match_all("",$content,$matches);http://www.dytt8.net/...
这块正则 匹配出 啊标签的 连接 怎么写啊 帮忙写下呗 preg_match_all("", $content, $matches);http://www.dytt8.net/
展开
1个回答
2014-12-24
展开全部
用下面的代码试试:
preg_match_all('/<a[^>]+href=\"([^\"]+)\"[^>]*>/', $content, $matches);
print_r($matches);
注意:
$matches[0] 是整个正则表达式匹配的内容;
$matches[1] 就是括号里面匹配的内容,也就是你要的链接。
preg_match_all('/<a[^>]+href=\"([^\"]+)\"[^>]*>/', $content, $matches);
print_r($matches);
注意:
$matches[0] 是整个正则表达式匹配的内容;
$matches[1] 就是括号里面匹配的内容,也就是你要的链接。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询