__construct() 函數創建一個新的 SimpleXMLElement 對象。
如果成功,則該函數返回一個對象。如果失敗,則返回 false。
__construct(data,options,is_url,ns,is_prefix)
返回一個表示數據的 SimpleXMLElement 對象。
<?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 SimpleXMLElement($xmlstring)
;
echo $xml->body[0];
?>
輸出類似:
Don't forget the meeting!
後來看construct的前_是一個,我靠,上次也是這個錯誤,忘了,現在記著了
function __construct()
{}
不是
function _construct()
{}