Home
last modified time | relevance | path

Searched refs:registerPhpFunctionNS (Results 1 – 7 of 7) sorted by relevance

/php-src/ext/dom/tests/
H A DregisterPhpFunctionNS_errors.phpt2 registerPhpFunctionNS() function - error cases
19 $xpath->registerPhpFunctionNS('http://php.net/xpath', 'strtolower', strtolower(...));
25 $xpath->registerPhpFunctionNS('http://php.net/xpath', 'test', [new TrampolineClass, 'test']);
31 $xpath->registerPhpFunctionNS('urn:foo', '$$$', [new TrampolineClass, 'test']);
37 $xpath->registerPhpFunctionNS('urn:foo', 'x:a', strtolower(...));
43 $xpath->registerPhpFunctionNS("urn:foo", "\0", strtolower(...));
49 $xpath->registerPhpFunctionNS("\0", 'strtolower', strtolower(...));
58 DOMXPath::registerPhpFunctionNS(): Argument #2 ($name) must be a valid callback name
59 DOMXPath::registerPhpFunctionNS(): Argument #2 ($name) must be a valid callback name
60 DOMXPath::registerPhpFunctionNS(): Argument #2 ($name) must not contain any null bytes
[all …]
H A DregisterPhpFunctionNS.phpt2 registerPhpFunctionNS() function - legit cases
33 $xpath->registerPhpFunctionNS('urn:foo', 'strtolower', strtolower(...));
38 $xpath->registerPhpFunctionNS('urn:foo', 'strtolower', 'strtolower');
43 $xpath->registerPhpFunctionNS('urn:foo', 'test', TrampolineClass::test(...));
49 $xpath->registerPhpFunctionNS('urn:foo', 'test', $state->test(...));
55 $xpath->registerPhpFunctionNS('urn:foo', 'test', var_dump(...));
61 $xpath->registerPhpFunctionNS('urn:bar', 'test', 'strtolower');
H A DDOMXPath_constructor_registered_functions.phpt29 $xpath->registerPhpFunctionNS('urn:foo', 'test', [new Test, 'test']);
41 $xpath->registerPhpFunctionNS('urn:foo', 'test', [new Test, 'test']);
/php-src/ext/xsl/tests/
H A DregisterPHPFunctionNS_errors.phpt16 createProcessor([])->registerPhpFunctionNS('http://php.net/xsl', 'strtolower', strtolower(...));
22 …createProcessor([])->registerPhpFunctionNS('http://php.net/xsl', 'test', [new TrampolineClass, 'te…
28 createProcessor([])->registerPhpFunctionNS('urn:foo', '$$$', [new TrampolineClass, 'test']);
34 createProcessor([])->registerPhpFunctionNS('urn:foo', 'x:a', strtolower(...));
40 createProcessor([])->registerPhpFunctionNS("urn:foo", "\0", strtolower(...));
46 createProcessor([])->registerPhpFunctionNS("\0", 'strtolower', strtolower(...));
/php-src/ext/dom/
H A Dxpath.c450 PHP_METHOD(DOMXPath, registerPhpFunctionNS) in PHP_METHOD() argument
H A Dphp_dom.stub.php1231 …public function registerPhpFunctionNS(string $namespaceURI, string $name, callable $callable): voi… function in DOMXPath
2164 …public function registerPhpFunctionNS(string $namespaceURI, string $name, callable $callable): voi… function in Dom\\XPath
H A Dphp_dom_arginfo.h1252 ZEND_METHOD(DOMXPath, registerPhpFunctionNS);
1542 …ZEND_ME(DOMXPath, registerPhpFunctionNS, arginfo_class_DOMXPath_registerPhpFunctionNS, ZEND_ACC_PU…

Completed in 55 milliseconds