$string = 'text <span style="color:#f09;">text</span>
<span class="data" data-url="http://www.google.com">google.com</span>
text <span class="data" data-url="http://www.yahoo.com">yahoo.com</span> text.';
我想要做的是从所有具有类data的跨度中获取data-url。所以,它应该输出:
$string = 'text <span style="color:#f09;">text</span>
http://www.google.com text http://www.yahoo.com text.';
然后我想删除所有剩余的html 标签。
$string = strip_tags($string);
输出:
$string = 'text text http://www.google.com text http://www.yahoo.com text.';
有人可以告诉我如何做到这一点吗?