1
數組我有構造這樣一個XML節點:我如何遍歷這個XML結構,並從它創建的PHP
<ItemDimensions>
<Height Units="hundredths-inches">42</Height>
<Length Units="hundredths-inches">752</Length>
<Weight Units="hundredths-pounds">69</Weight>
<Width Units="hundredths-inches">453</Width>
</ItemDimensions>
我如何遍歷這個XML,並得到屬性,單位和值到一個數組?
例如我想建立一個數組,看起來像這樣:
$itemDimensions = array(
array('height','hundredths-inches',24),
array('length,','hundredths-inches',752),
array('weight','hundredths-pounds',69),
array('width','hundredths-inches',453),
)
這是一些可重複使用的代碼。 https://phpro.org/examples/XML-To-Array-With-PHP.html –