我有一个像这样的字符串
$str = '<a href="http://www.example.com/example_link">This is the Example Link</a>';
我想在php中从上面的字符串中获取href值(http://www.example.com/example_link)
和文本值(This is the Example Link)
如何从字符串中获取这些值,任何有效的方式。我需要使用 PHP DOM 还是 REGEX?
注意:一个字符串中可能不止一次出现锚<a>
标记。