最新的Web開發教程
 

PHP xpath() Function


<完整PHP SimpleXML的參考

定義和用法

xpath()函數運行的XML文檔的XPath查詢。

該函數返回SimpleXMLElements對成功的一個陣列,假故障。


句法

class SimpleXMLElement
{
string xpath(path)
}

參數 描述
path 需要。 指定XML文檔中搜索內容

XML文件

<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

PHP代碼

<?php
$xml = simplexml_load_file("test.xml");

$result = $xml->xpath("from");

print_r($result);
?>

代碼的輸出將是:

Array
(
[0] => SimpleXMLElement Object
  (
  [0] => Jani
  )
)

<完整PHP SimpleXML的參考