当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > simplexml_import_dom() 函数
The simplexml_import_dom() converts a DOM node to a SimpleXMLElement object.
simplexml_import_dom()函数的作用是:将一个DOM节点转换成一个SimpleXMLElement对象。
This function returns FALSE on failure.
如果函数执行失败,将返回False。
simplexml_import_dom(data,class) |
Parameter参数 | Description描述 |
---|---|
data | Required. Specifies the DOM node to use 必要参数。指定需要使用的DOM节点 |
class | Optional. Specifies the class of the new object 可选参数。指定新对象的类 |
<?php $dom = new domDocument; $dom->loadXML('<note><from>Jani</from></note>'); $xml = simplexml_import_dom($dom); echo $xml->from; ?> |
The output of the code above will be:
上述代码将输出下面的结果:
Jani |