PHP parses the author and title of each book through DOM

Source: Internet
Author: User
PHP parses the author and title of each book in DOM mode

$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 ')->item (0)->nodevalue;
var_dump ($third _title);
var_dump ($third _author);
?>
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.