有沒有一種方法來轉換使用Zend Framework和PHP的XML數組?我見過使用SimpleXML的人來做這件事,但我想知道是否有通過Zend Framework的方式。轉換XML到關聯數組
示例XML,我想轉換成數組是:
<library>
<book>
<authorFirst>Mark</authorFirst>
<authorLast>Twain</authorLast>
<title>The Innocents Abroad</title>
</book>
<book>
<authorFirst>Charles</authorFirst>
<authorLast>Dickens</authorLast>
<title>Oliver Twist</title>
</book>
</library>
轉換後的陣列將是這樣的:
Array
(
[0] => Array (
[authorFirst] => Mark
[authorLast] => Twain
[title] => Innocents Abroad
)
[1] => Array (
[authorFirst] => Charles
[authorLast] => Dickens
[title] => Oliver Twist
)
)
尼斯轉換成數組,偉大工程! –