- 爱易网页
-
PHP教程
- PHP透过DOM方式解析获得每本书的作者和书名
日期:2014-05-17 浏览次数:20567 次
PHP通过DOM方式解析获得每本书的作者和书名
<?php
$doc = new DOMDocument('1.0','utf-8');
$doc -> load('book.xml');
$books = $doc ->getElementsByTagName('book');
$first_book = $books ->item(0);
$first_title = $first_book ->getElementByTagName('title')->item(0)->nodeValue;
$first_author = $first_book ->getElementByTagName('author')->item(0)->nodeValue;
$second_book = $books ->item(1);
$second_title = $second_book ->getElementsByTagName('title');
$tar = $title ->item(0);
$text = $tar ->nodeValue;
$third_book = $books ->item(2);
$third_title = $third_book ->getElementsByTagName('title')->item(0)->nodeValue;
$third_author = $third_book ->getElementsByTagName('author')
免责声明: 本文仅代表作者个人观点,与爱易网无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。