PHP xpath() 函數(shù)
PHP xpath() 函數(shù)

定義和用法
xpath() 函數(shù)運(yùn)行對(duì) XML 文檔的 XPath 查詢。
如果成功,該函數(shù)返回 SimpleXMLElements 對(duì)象的一個(gè)數(shù)組。如果失敗,則返回 FALSE。
語(yǔ)法
class SimpleXMLElement
{
string xpath(path)
}
{
string xpath(path)
}
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要在 XML 文檔中搜索的 XPath 路徑。 |
實(shí)例
XML 文件
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<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);
?>
$xml = simplexml_load_file("test.xml");
$result = $xml->xpath("from");
print_r($result);
?>
上面的代碼將輸出:
Array
(
[0] => SimpleXMLElement Object
(
[0] => Jani
)
)
(
[0] => SimpleXMLElement Object
(
[0] => Jani
)
)

相關(guān)文章
- PHP 運(yùn)算符
- PHP Cookie
- PHP 過濾器
- PHP array_diff() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP compact() 函數(shù)
- PHP key() 函數(shù)
- PHP natsort() 函數(shù)
- PHP sort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP Libxml 函數(shù)
- PHP Mail 函數(shù)
- PHP 5 MySQLi 函數(shù)