PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<SimpleXMLElement->xpathsimplexml_load_file>
Last updated: Mon, 16 Jul 2012

simplexml_import_dom

(PHP 5)

simplexml_import_dom --  Get a SimpleXMLElement object from a DOM node.

Description

SimpleXMLElement simplexml_import_dom ( DOMNode node [, string class_name] )

This function takes a node of a DOM document and makes it into a SimpleXML node. This new object can then be used as a native SimpleXML element. If any errors occur, it returns FALSE.

例子 1. Import DOM

<?php
$dom
= new domDocument;
$dom->loadXML('<books><book><title>blah</title></book></books>');
if (!
$dom) {
   echo
'Error while parsing the document';
   exit;
}

$s = simplexml_import_dom($dom);

echo
$s->book[0]->title; // blah
?>

See also dom_import_simplexml().




<SimpleXMLElement->xpathsimplexml_load_file>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST