0
我正在使用下面的代碼來讀取一個xml文檔。用PHP顯示XML文檔的最後一個項目
該代碼輸出XML文檔中的所有書籍。我想知道是否有可能只顯示前5本書或顯示特定的書名。
$doc = new DOMDocument();
$doc->load('books.xml');
$books = $doc->getElementsByTagName("books");
foreach($books as $book)
{
$authors = $book->getElementsByTagName("author");
$author = $authors->item(0)->nodeValue;
$publishers = $book->getElementsByTagName("publisher");
$publisher = $publishers->item(0)->nodeValue;
$titles = $book->getElementsByTagName("title");
$title = $titles->item(0)->nodeValue;
使用'for'來代替? –