Home
last modified time | relevance | path

Searched refs:b (Results 201 – 225 of 2383) sorted by path

12345678910>>...96

/PHP-5.5/Zend/tests/
H A Dheredoc_003.phpt14 This is heredoc test #$b.
H A Dheredoc_004.phpt14 This is heredoc test #{$b}.
H A Dheredoc_005.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 Dheredoc_006.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 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 Dindirect_call_array_001.phpt6 $arr = array('a', 'b');
H A Dindirect_call_array_002.phpt6 $arr = array('stdclass', 'b');
11 Fatal error: Call to undefined method stdClass::b() in %s on line %d
H A Dindirect_call_array_003.phpt7 public function __call($a, $b) {
12 static public function __callStatic($a, $b) {
H A Dindirect_call_array_004.phpt10 public function __call($a, $b) {
14 static public function __callStatic($a, $b) {
H A Dinstanceof_001.phpt11 $b = create_function('', 'return new stdClass;');
12 var_dump($b() instanceof stdClass);
H A Dinter_007.phpt11 function b();
H A Dinter_03.phpt7 const b = 2;
10 interface b extends a {
11 const c = self::b;
14 var_dump(b::c, a::b);
H A Dinter_04.phpt7 function b();
10 interface b {
11 function b();
14 interface c extends a, b {
H A Disset_002.phpt6 var_dump(isset($a, ${$b}, $$c, $$$$d, $e[$f->g]->d));
H A Disset_003.phpt7 $b =& $a;
9 var_dump(isset($b));
11 var_dump(isset($a[0], $b[1]));
15 var_dump(isset($c[0][1][2]->a->b->c->d));
17 var_dump(isset(${$a}->{$b->$c[$d]}));
H A Disset_003_2_4.phpt9 $b =& $a;
11 var_dump(isset($b));
13 var_dump(isset($a[0], $b[1]));
17 var_dump(isset($c[0][1][2]->a->b->c->d));
19 var_dump(isset(${$a}->{$b->$c[$d]}));
H A Djump11.phpt9 goto b;
13 b:
H A Djump12.phpt8 b:
14 goto b;
H A Djump13.phpt9 goto b;
11 b: print 2;
H A Dlist_001.phpt6 list($a, list($b)) = array(new stdclass, array(new stdclass));
7 var_dump($a, $b);
H A Dlist_002.phpt9 $b =& $a;
11 list($a, list($b)) = array($a, array($b));
12 var_dump($a, $b, $a === $b);
H A Dlist_003.phpt8 list($b) = 1;
16 var_dump($a, $b, $c, $d, $e);
H A Dlist_004.phpt7 $b =& $arr;
9 list(,$a) = $b;
11 var_dump($a, $b);
H A Dlist_005.phpt8 list($a, $b, $c) = $a;
10 var_dump($a, $b, $c);
16 list($a, $b, $c) = $a;
18 var_dump($a, $b, $c);
24 list($a, $b, $c) = $a;
26 var_dump($a, $b, $c);
32 list($a, $b, $c) = $a;
34 var_dump($a, $b, $c);
H A Dlist_006.phpt6 list($a, list($b, list(list($d)))) = array();

Completed in 26 milliseconds

12345678910>>...96