参数 | 描述 |
---|---|
string | 必需。规定要使用的 XML 字符串。 |
class | 可选。规定新对象的 class。 |
options | 可选。规定附加的 Libxml 参数。 |
ns | 可选。 |
is_prefix | 可选。 |
返回类 SimpleXMLElement 的一个对象,该对象的属性包含 XML 文档中的数据。如果失败,则返回 false。
<?php
$xmlstring = <<<XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Dont forget the meeting!</body>
</note>
XML;
$xml = simplexml_load_string($xmlstring)
;
var_dump($xml);
?>
输出:
object(SimpleXMLElement)#1 (4) { ["to"]=> string(4) "George" ["from"]=> string(4) "John" ["heading"]=> string(8) "Reminder" ["body"]=> string(29) "Dont forget the meeting!" }
制作:
http://www.7di.net 生活网搜集整理 参考: http://www.w3school.com.cn/php/func_simplexml_load_string.asp |