Home
last modified time | relevance | path

Searched refs:params (Results 201 – 204 of 204) sorted by last modified time

123456789

/PHP-7.4/Zend/tests/
H A Dbug78010.phpt23 foreach (array_fill(0, 389, 'x') as &$params) { //Will not trigger <389
H A Dclosure_047.phpt6 function replace_variables($text, $params) {
8 preg_replace_callback( '/(\?)/', function($matches) use (&$params, &$text) {
10 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
H A Dclosure_048.phpt6 function replace_variables($text, $params) {
8 $c = function($matches) use (&$params, &$text) {
9 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
H A Dbug54013.phpt10 $params = func_get_args();
18 $params = $reflectionClass->getMethod('b')->getParameters();
20 var_dump($params[0], $params[1]);

Completed in 39 milliseconds

123456789