Home
last modified time | relevance | path

Searched refs:b (Results 2326 – 2350 of 2383) sorted by last modified time

1...<<919293949596

/PHP-5.5/Zend/tests/
H A Dheredoc_007.phpt9 This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
14 This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
H A Dgc_019.phpt9 $b = 1;
10 $a =& $b;
H A Dgc_021.phpt11 $b = 1;
12 $a =& $b;
H A Dforeach_list_001.phpt6 foreach(array(array(1,2), array(3,4)) as list($a, $b)) {
7 var_dump($a . $b);
11 array('a', 'b'),
15 foreach ($array as list($a, $b)) {
16 var_dump($a . $b);
25 foreach ($multi as list(list($a, $b), list($c, $d))) {
26 var_dump($a . $b . $c . $d);
29 foreach ($multi as $key => list(list($a, $b), list($c, $d))) {
30 var_dump($key . $a . $b . $c . $d);
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 Dconstants_007.phpt7 const A = 'b';
20 string(1) "b"
H A Ddebug_backtrace_limit.phpt6 b();
9 function b() {
54 [function] => b
79 [function] => b
115 [function] => b
H A Ddebug_print_backtrace_limit.phpt6 b();
9 function b() {
25 #1 b() called at [%sdebug_print_backtrace_limit.php:3]
27 #1 b() called at [%sdebug_print_backtrace_limit.php:3]
30 #1 b() called at [%sdebug_print_backtrace_limit.php:3]
H A Ddereference_003.phpt15 public function b() {
20 $b = &$a;
21 $b[] = true;
25 return $this->b();
33 var_dump($foo->b()[1][0]->a()[0]->x);
H A Dcall_static_003.phpt7 public function __call($a, $b) {
11 static public function __callStatic($a, $b) {
H A Dcall_static_007.phpt7 public function __call($a, $b) {
10 static public function __callStatic($a, $b) {
21 $b = 'Test';
22 $a::$b();
23 $a->$b();
H A Dclass_alias_001.phpt11 $b = new bar;
13 var_dump($a == $b, $a === $b);
14 var_dump($a instanceof $b);
19 var_dump($b instanceof foo);
20 var_dump($b instanceof bar);
H A Dclass_alias_009.phpt8 class_alias('a', 'b');
10 interface c extends a, b { }
H A Dclass_exists_003.phpt8 abstract class b { }
15 var_dump(class_exists('b'));
H A Dclosure_014.phpt34 $a = $b = $c = $d = 1;
38 $e =& $x->__invoke($b);
40 var_dump($b);
41 $x($b);
42 $x->__invoke($b);
H A Dclosure_030.phpt6 $b = function() { return func_get_args(); };
7 $a = 'b';
H A Dbug69420.phpt26 $b = new B();
27 $b->foo();
H A Dbug62343.phpt6 class_alias("a", "b");
12 string(1) "b"
H A Dbug62680.phpt6 var_dump(isset($array[0]["a"]["b"]));
7 var_dump(isset($array[0]["a"]["b"]["c"]));
H A Dbug64239_2.phpt19 $b = new B();
20 $b->Bmethod();
/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"]=>

Completed in 57 milliseconds

1...<<919293949596