我在使用 preg_match_all 匹配链接的 href 部分时遇到问题,目前它正在捕获 3 个部分(完整链接、仅 url、仅链接文本),这是完美的,但仅 url 部分正在捕获位于 href 之后的任何其他标签标签。
另外,如何使“href”文本不区分大小写?
代码:
$content = '<a href="http://www.google.com" target="_blank">Google</a> is a search engine. <a href="http://www.yahoo.com" title="yahoo" target="_blank">Yahoo</a> is a search engine.';
preg_match_all('/<a href="([^<]*)">([^<]*)<\/a>/', $content, $matches);
print_r($matches);
结果:
Array
(
[0] => Array
(
[0] => <a href="http://www.google.com" target="_blank">Google</a>
[1] => <a href="http://www.yahoo.com" title="yahoo" target="_blank">Yahoo</a>
)
[1] => Array
(
[0] => http://www.google.com" target="_blank
[1] => http://www.yahoo.com" title="yahoo" target="_blank
)
[2] => Array
(
[0] => Google
[1] => Yahoo
)
)