次の投稿xml内の最初のimgのsrcを選択しようとしています。
<post>
<regular-title>Testing 1</regular-title>
<regular-body>
<p>This is a test for projects on the website</p>
<p><img src="http://media.tumblr.com/tumblr_m3t0r3saXy1rocfxw.jpg"/></p>
<p><img src="http://media.tumblr.com/tumblr_m3t0s6bPyw1rocfxw.jpg"/></p>
</regular-body>
</post>
phpを使用してタイトルと投稿テキストを選択できますが、imgまたはそのsrcを選択できませんでした。
$title = $xml->posts->post->{'regular-title'};
$img = $xml->posts->post->{'regular-body'}->??????;
$post = $xml->posts->post->{'regular-body'};
imgを選択するために正しい方法を使用していますか、それとも別の方法がありますか?