1

リンクの 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() を使用する以外に、属性を文字列として抽出する方法はありますか?

4

1 に答える 1

1

オブジェクトとして扱い@attributes、文字列に変換します。

$link = simplexml_load_string($ad['meta_value']);
echo (string) $link->attributes()->href;
于 2012-08-26T02:37:06.880 に答える