在PHP 中從XML 檔案存取屬性值
在PHP 中使用XML 檔案時,擷取屬性值可能是一項常見任務。讓我們考慮範例XML:
<VAR VarNum="90"> <option>1</option> </VAR>
使用SimpleXMLElement 取得屬性值
要取得「VarNum」屬性值,我們可以利用SimpleXMLElement::attributes( ) 方法。具體方法如下:
$xml = simplexml_load_file($file); $attr = $xml->Var->attributes(); echo $attr['VarNum']; // Output: 90
循環遍歷所有屬性
如果需要處理多個屬性,可以循環遍歷attributes()數組:
$xml = simplexml_load_file($file); foreach ($xml->Var[0]->attributes() as $name => $value) { echo "$name=\"$value\"\n"; }
額外注意
請記住,屬性是使用數組語法(['VarNum')而不是點語法訪問的。
以上是如何使用 PHP 的 SimpleXMLElement 存取 XML 屬性值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!