在PHP 中從XML 取得屬性值
在PHP 中使用SimpleXMLElement 類別從XML 檔案擷取屬性值是一項簡單的任務。
假設您有一個類似以下內容的 XML 檔案this:
<VAR VarNum="90"> <option>1</option> </VAR>
要取得 VarNum 屬性的值,您可以利用 SimpleXMLElement 物件的 attribute() 方法。
$xml = simplexml_load_file($file); foreach ($xml->Var[0]->attributes() as $attributeName => $attributeValue) { echo "$attributeName=\"$attributeValue\"\n"; }
此程式碼迭代第一個 Var 元素並以結構化格式列印它們的名稱和值。
或者,您可以透過以下方式直接存取屬性值名稱:
$attr = $xml->Var[0]->attributes(); echo $attr['VarNum'];
以上是如何在 PHP 中從 XML 檢索屬性值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!