Home
last modified time | relevance | path

Searched refs:y (Results 51 – 75 of 476) sorted by path

12345678910>>...20

/PHP-7.4/Zend/tests/
H A Dbug76534.phpt10 $y = &$x["bar"];
H A Dbug78010.phpt16 $this->y[] = $obj;
H A Dbug78271.phpt9 $w="y";
H A Dbug80194.phpt7 switch ($x->y) {
16 $x = (object)['y' => 'foobar'];
H A Dbug81104.phpt14 $y = [];
16 $y[] = new X();
18 $y[0]->y = &$y;
H A Dcall_user_func_005.phpt7 public static function __callstatic($x, $y) {
8 var_dump($x,$y);
H A Dcall_user_func_006.phpt17 $y = 42;
18 $ref =& $y;
19 call_user_func('Foo\bar', $y);
20 var_dump($y);
H A Dcall_user_func_008.phpt19 $x =& $i; $y =& $j;
H A Dclosure_009.phpt12 $y = function ($x) use (&$a) {
21 $y(4);
22 $y(5);
23 $y(6);
H A Dclosure_018.phpt18 $y = 2;
19 var_dump($test->test($y));
20 var_dump($x = $test->test($y));
21 var_dump($y, $x);
H A Dclosure_019.phpt13 $y = 3;
14 var_dump($GLOBALS['lambda']($y));
15 var_dump($lambda($y));
H A Dclosure_020.phpt21 $y = $foo->x();
22 var_dump($y()->test);
H A Dclosure_025.phpt6 $a = create_function('$x', 'return function($y) use ($x) { return $x * $y; };');
H A Dclosure_027.phpt15 $a = function($x) use ($y) {};
30 Notice: Undefined variable: y in %s on line %d
H A Dclosure_028.phpt6 foreach (function(){ return 1; } as $y) {
7 var_dump($y);
H A Dclosure_029.phpt8 var_dump(@function(&$x) use ($y, $z) { } instanceof closure);
H A Dconstant_arrays.phpt21 $y = [&$x];
22 define('QUX', $y);
23 $y[0] = 3;
24 var_dump($x, $y, QUX);
H A Dconstructor_args.phpt13 public function __construct($x = 1, $y = 2) {
H A Ddereference_001.phpt18 public $y = 1;
28 var_dump(c()[0]->y); // int(1)
37 $y = 'bar';
38 $x = array('a' => 'foo', 'b' => $y);
H A Ddereference_013.phpt11 public function __call($x, $y) {
13 $this->x[] = $y[0];
H A Ddereference_014.phpt10 static public $y;
17 return self::$y;
H A Dexception_during_by_reference_magic_get.phpt14 $y = 5;
16 $test->x =& $y;
H A Dexception_in_nested_rope.phpt10 $str = "$a${"y$a$a"}y";
H A Dexception_in_rope_end.phpt10 $str = "y$b$a";
H A Dforeach_005.phpt7 foreach($a as &$y) {
8 echo "$x-$y\n";
9 $y++;

Completed in 40 milliseconds

12345678910>>...20