__construct() function creates a new SimpleXMLElement object.
If successful, the function returns an object. If failed, returns false.
__construct(data,options,is_url,ns,is_prefix)
参数 | 描述 |
---|---|
data | 必需。形式良好的 XML 字符串或 XML 文档的路径或 URL。 |
options | 可选。规定附加的 Libxml 参数。 |
is_url | 可选。规定 data 参数是否是 URL。默认是 false。 |
ns | 可选。 |
is_prefix | 可选。 |
Returns a SimpleXMLElement object representing the data.
<?php $xmlstring = <<<XML <?xml version="1.0" encoding="ISO-8859-1"?> <note> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don't forget the meeting!</body> </note> XML; $xml = new <code>SimpleXMLElement($xmlstring)</code>; echo $xml->body[0]; ?>
The output is similar to:
Don't forget the meeting!<br>后来看construct的前_是一个,我靠,上次也是这个错误,忘了,现在记着了 <br>function __construct() <br>{} <br><br>不是 <br>function _construct() <br>{}