struzik-vladislav/xpath-extended

Additional functions for XPath

Installs: 13 269

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/struzik-vladislav/xpath-extended

v1.0.0 2017-09-15 23:57 UTC

This package is auto-updated.

Last update: 2025-09-26 19:23:39 UTC


README

Additional functions for XPath.

Usage

Initialisation

<?php

use XPath\DOMXPath;

$xpath = new DOMXPath($domdocument);

XPath\quote('string')

Quotes a string for use in a query.

<?php

$needle = 'abd\'efg';
$expr = sprintf('//root:root/root:node[php:functionString("XPath\quote", text()) = \'%s\']', $needle);
$list = $xpath->query($expr);