リンクの href 属性を文字列として抽出しようとしています。
<a href="http://example.com" target="_blank" class="someclass">Read More</a>
私は次を使用して、属性の抽出を読み取ります。
$link = simplexml_load_string($ad['meta_value']);
$order['logo'] = $logo['href']->asXML();
を取得する代わりに、 を取得しhttp://example.com
ていhref="http://example.com"
ます。str_replace() を使用する以外に、属性を文字列として抽出する方法はありますか?