Home
last modified time | relevance | path

Searched refs:b (Results 176 – 200 of 2383) sorted by path

12345678910>>...96

/PHP-5.5/Zend/tests/
H A Dforeach_list_002.phpt10 $array = [['a', 'b'], 'c', 'd'];
20 string(1) "b"
H A Dforeach_list_003.phpt6 $array = [['a', 'b'], 'c', 'd'];
H A Dforeach_list_004.phpt6 $array = [['a', 'b'], 'c', 'd'];
H A Dforeach_temp_array_expr_with_refs.phpt7 $b = 'b';
9 foreach ([&$a, &$b] as &$value) {
13 var_dump($a, $b);
18 string(5) "b-foo"
H A Dforeach_unset_globals.phpt6 $arr = array("a" => 1, "b" => 2);
18 ["b"]=>
H A Dgc_014.phpt9 $b =& $a;
12 unset($b);
13 $a->b = "xxx";
H A Dgc_015.phpt9 $b = $a;
11 $a->b = "xxx";
14 unset($b);
H A Dgc_017.phpt28 $b = new Node('B');
30 $a->insert($b);
33 unset($b);
H A Dgc_019.phpt9 $b = 1;
10 $a =& $b;
H A Dgc_021.phpt11 $b = 1;
12 $a =& $b;
H A Dgc_032.phpt6 $b =& $a;
10 $b =& $a;
H A Dget_class_methods_001.phpt8 private function b() { }
H A Dget_class_methods_002.phpt8 function b();
13 public function b() { }
32 string(1) "b"
38 string(1) "b"
H A Dget_class_methods_003.phpt14 protected function b() { }
63 string(1) "b"
73 string(1) "b"
H A Dget_class_vars_001.phpt8 private $b = 2;
H A Dget_class_vars_002.phpt8 private $b = 2;
23 var_dump($this->a, $this->b, $this->c);
44 Notice: Undefined property: C::$b in %s on line %d
H A Dget_class_vars_003.phpt8 private $b = 2;
H A Dget_class_vars_004.phpt10 private $b = 3;
42 ["b"]=>
56 ["b"]=>
H A Dget_class_vars_005.phpt8 private $b = 2;
H A Dget_class_vars_007.phpt8 static private $b, $bb;
32 ["b"]=>
H A Dheredoc_002.phpt8 print b<<<ENDOFHEREDOC
13 $x = b<<<ENDOFHEREDOC
/PHP-5.5/Zend/tests/generators/
H A Dfibonacci.phpt7 list($a, $b) = [1, 1];
9 yield $b;
10 list($a, $b) = [$b, $a + $b];
H A Dgenerator_in_multipleiterator.phpt12 yield 'b';
30 string(1) "b"
H A Dgenerator_with_nonscalar_keys.phpt8 yield (object) ['a' => 'b'] => (object) ['b' => 'a'];
39 string(1) "b"
42 ["b"]=>
H A Dyield_during_method_call.phpt7 public function b($c) {
14 $a->b(yield);

Completed in 24 milliseconds

12345678910>>...96