PHP SimpleXML eleman niteliği ile ilgili sorun

0 Cevap php

i PHP SimpleXML kullanarak ayrıştırılması için aşağıdaki biçimde bir xml yapısı var.

<books>

<book>
<title>XYZ</title>
<author> someone </author>
<images>
<image type="poster" url="<url>" size="cover" id="12345"/>
<image type="poster" url="<url>" size="thumb" id="12345"/>
</images>
</book>

<book>
<title>PQR</title>
<author> someoneelse </author>
<images>
<image type="poster" url="<url>" size="cover" id="67890"/>
<image type="poster" url="<url>" size="thumb" id="67890"/>
</images>
</book>

</books>

I ilk kitabının ilk görüntü url yazdırmak istediğinizi varsayalım. Ben kullanarak bunu yapmak mümkün duyuyorum

$books = $xml->books; 
$book = $books->book[0]; //Get the first book
$images = $book->images;
print $images->image[0]->attributes()->url ; //This works

Ben bu kitap için tüm görüntü adresler yazdırmaya çalıştığınızda Ama çalışmıyor. Kullanarak kod im:

$books = $xml->books; 
$book = $books->book[0]; //Get the first book
$images=$book->images;

foreach($images as $image) //This does not work
{
   print $image->attributes()->url;
}

Bu sorunu düzeltmek için herhangi bir şekilde?

Thank You

0 Cevap