从字符串创建 SimpleXMLElement 对象:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml=new SimpleXMLElement($note);
echo $xml->asXML();
?>
运行示例 »
__construct() 函数创建一个新的 SimpleXMLElement 对象。
SimpleXMLElement::__construct(
data, options, data_is_url, ns, is_prefix)
Parameter | Description |
---|---|
data | Required. Specifies a well-formed XML string or the path or URL to an XML document if data_is_url is TRUE |
options | Optional. Specifies additional Libxml parameters. Is set by specifying the option and 1 or 0 (TRUE or FALSE, e.g. LIBXML_NOBLANKS(1)) Possible values:
|
data_is_url | Optional. TRUE specifies that data is a path/URL to an XML document instead of string data. Default is FALSE |
ns | Optional. Specifies a namespace prefix or URI |
is_prefix | Optional. Specifies a Boolean value. TRUE if ns is a prefix. FALSE if ns is a URI. Default is FALSE |
返回值: | 返回一个 SimpleXMLElement 对象,该对象表示数据 |
---|---|
PHP 版本: | 5.0+ |
PHP 变更日志: | PHP 5.2.0:添加了可选的纳秒和is_前缀参数。 PHP 5.1.2:添加了可选选项和数据是网址参数。 |
假设我们有以下 XML 文件,“注释.xml”:
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
从 URL 创建 SimpleXMLElement 对象:
<?php
$xml=new SimpleXMLElement("note.xml", 0, TRUE);
echo $xml->asXML();
?>
运行示例 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!