Searched refs:registerPhpFunctions (Results 1 – 14 of 14) sorted by relevance
/php-src/ext/dom/tests/ |
H A D | DOMXPath_callables_errors.phpt | 13 $xpath->registerPhpFunctions("nonexistent"); 19 $xpath->registerPhpFunctions(function () {}); 25 $xpath->registerPhpFunctions([function () {}]); 31 $xpath->registerPhpFunctions([var_dump(...)]); 37 $xpath->registerPhpFunctions(["nonexistent"]); 43 $xpath->registerPhpFunctions(["" => var_dump(...)]); 49 $xpath->registerPhpFunctions(["\0" => var_dump(...)]); 55 $xpath->registerPhpFunctions(""); 63 DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be of type array|string|null, Closur… 67 DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be an array containing valid callbac… [all …]
|
H A D | DOMXPath_callables.phpt | 16 $this->registerPhpFunctions(["cycle" => array($this, "dummy")]); 47 $xpath->registerPhpFunctions([]); 51 $xpath->registerPhpFunctions(str_repeat("var_dump", mt_rand(1, 1) /* defeat SCCP */)); 70 $xpath->registerPhpFunctions(null);
|
H A D | domxpath.phpt | 61 $xpath->registerPhpFunctions(['non_existant']); 72 DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be a callable, function "non_existen… 73 DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be an array with valid callbacks as …
|
H A D | DOMXPath_evaluate_node_set_to_string.phpt | 19 $xpath->registerPhpFunctions(['strrev']);
|
H A D | DOMXPath_evaluate_namespace_node_set.phpt | 24 $xpath->registerPhpFunctions(['node_test']);
|
/php-src/ext/xsl/tests/ |
H A D | XSLTProcessor_callables_errors.phpt | 2 registerPhpFunctions() with callables - error cases 12 $proc->registerPhpFunctions("nonexistent"); 18 $proc->registerPhpFunctions(function () {}); 24 $proc->registerPhpFunctions([function () {}]); 30 $proc->registerPhpFunctions([var_dump(...)]); 36 $proc->registerPhpFunctions(["nonexistent"]); 42 $proc->registerPhpFunctions(["" => var_dump(...)]); 48 $proc->registerPhpFunctions(["\0" => var_dump(...)]); 54 $proc->registerPhpFunctions("");
|
H A D | XSLTProcessor_callables.phpt | 2 registerPhpFunctions() with callables - legit cases 31 $proc->registerPhpFunctions([]); 35 $proc->registerPhpFunctions(str_repeat("var_dump", mt_rand(1, 1) /* defeat SCCP */)); 39 $proc->registerPhpFunctions([]);
|
H A D | bug33853.phpt | 27 $proc->registerPhpFunctions();
|
H A D | xpath_callables.inc | 12 $this->registerPhpFunctions(["cycle" => array($this, "dummy")]);
|
H A D | php_function_edge_cases.phpt | 24 $proc->registerPhpFunctions();
|
H A D | throw_in_autoload.phpt | 27 $proc->registerPhpFunctions();
|
/php-src/ext/dom/ |
H A D | xpath.c | 426 PHP_METHOD(DOMXPath, registerPhpFunctions) in PHP_METHOD() argument
|
H A D | php_dom.stub.php | 1229 public function registerPhpFunctions(string|array|null $restrict = null): void {} function in DOMXPath 2165 public function registerPhpFunctions(string|array|null $restrict = null): void {} function in Dom\\XPath
|
H A D | php_dom_arginfo.h | 1256 ZEND_METHOD(DOMXPath, registerPhpFunctions); 1547 …ZEND_ME(DOMXPath, registerPhpFunctions, arginfo_class_DOMXPath_registerPhpFunctions, ZEND_ACC_PUBL…
|
Completed in 46 milliseconds