Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 249 Bytes

File metadata and controls

17 lines (12 loc) · 249 Bytes
sidebar_position 3

Querying a Document

Select a single node based on XPath

$node = $xml->selectSingleNode('//subnode');

Select all nodes based on XPath

$nodeList = $xml->selectNodes($myNode, '//subnode');