Searched refs:registerPhpFunctionNS (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/dom/tests/ |
H A D | registerPhpFunctionNS_errors.phpt | 2 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 D | registerPhpFunctionNS.phpt | 2 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 D | DOMXPath_constructor_registered_functions.phpt | 29 $xpath->registerPhpFunctionNS('urn:foo', 'test', [new Test, 'test']); 41 $xpath->registerPhpFunctionNS('urn:foo', 'test', [new Test, 'test']);
|
/php-src/ext/xsl/tests/ |
H A D | registerPHPFunctionNS_errors.phpt | 16 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 D | xpath.c | 455 PHP_METHOD(DOMXPath, registerPhpFunctionNS) in PHP_METHOD() argument
|
H A D | php_dom.stub.php | 1231 …public function registerPhpFunctionNS(string $namespaceURI, string $name, callable $callable): voi… function in DOMXPath 2168 …public function registerPhpFunctionNS(string $namespaceURI, string $name, callable $callable): voi… function in Dom\\XPath
|
H A D | php_dom_arginfo.h | 1257 ZEND_METHOD(DOMXPath, registerPhpFunctionNS); 1548 …ZEND_ME(DOMXPath, registerPhpFunctionNS, arginfo_class_DOMXPath_registerPhpFunctionNS, ZEND_ACC_PU…
|
Completed in 50 milliseconds