我擁有和對象數組,如下所示。我無法添加到此對象數組,因爲我不斷收到錯誤。 這裏是如何在當下:將SimpleXMLElement對象添加到數組中
SimpleXMLElement Object
(
[url] => Array
(
[0] => SimpleXMLElement Object
(
[loc] => http://jbsoftware.co.uk/
[lastmod] => 2015-02-02
[changefreq] => monthly
[priority] => 1.0
)
)
)
現在加入到這個月底我做了以下內容:
$note="
<url>
<loc>{$actual_link}</loc>
<lastmod>{$date}</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
";
$sxe = new SimpleXMLElement($note);
$page[] = $sxe;
而這又爲我提供了這個錯誤....
Fatal error: controller::generateSitemap() [<a href='controller.generatesitemap'>controller.generatesitemap</a>]: Cannot create unnamed attribute
任何人都可以請讓我知道爲什麼我不能簡單地將其添加到當前對象數組的末尾? 這一個真的讓我難住。
SimpleXMLElement對象_不是數組_,它們的行爲就像數組_在某些方面_。 – CBroe 2015-02-09 13:42:38