Home
last modified time | relevance | path

Searched refs:b (Results 51 – 75 of 2383) sorted by path

12345678910>>...96

/PHP-5.5/Zend/tests/
H A Dbug34893.phpt24 $b = new B;
25 $a->p = $b;
26 $b->t = "foo";
H A Dbug35106.phpt6 $b=&$a;
H A Dbug35163_2.phpt6 $b = 'a';
7 ${$b}[] =& $$b;
8 ${$b}[] =& $$b;
9 ${$b}[0] = 2;
H A Dbug35163_3.phpt6 $a->b = array(1);
7 $a->b[] =& $a->b;
8 $a->b[] =& $a->b;
9 $a->b[0] = 2;
11 $a->b = null;
16 ["b"]=>
H A Dbug35239.phpt10 $a->x0->y0 = 'b';
20 string(1) "b"
H A Dbug36071.phpt8 $a[0]->b = 0;
H A Dbug36303.phpt6 foreach($x->a->b as &$v) {
H A Dbug37632.phpt31 $b = new B1;
32 $b->doTest(new C1);
H A Dbug37715.phpt9 'b' => array(
14 // Set the pointer of $a to 'b' and the pointer of 'b' to 'CC'
17 next($a['b']);
18 next($a['b']);
19 next($a['b']);
21 var_dump(key($a['b']));
26 var_dump(key($a['b']));
H A Dbug38469.phpt8 $b = array(array());
9 $b[0][0] = $b;
10 var_dump($b);
16 $b = array(array());
17 $b[0][0] = $b;
18 var_dump($b);
H A Dbug38772.phpt35 $b = new B();
H A Dbug38808.phpt8 $b = array(1=>'one', 2=>'two');
9 $a =& $b;
H A Dbug39018.phpt104 b
H A Dbug39127.phpt7 class b extends a {}
9 $b = new b;
10 var_dump(is_callable(array($b,"a")));
11 var_dump(is_callable(array($b,"b")));
12 var_dump(is_callable(array($b,"__construct")));
H A Dbug39304.phpt6 list($a, $b) = $s[0];
H A Dbug39304_2_4.phpt8 list($a, $b) = $s[0];
9 var_dump($a,$b);
H A Dbug39449.phpt16 $a->arr = array('a','b','c');
18 $b = &$a->arr;
19 $b[]= 'd';
33 1 => b
37 1 => b
H A Dbug39944.phpt19 $b = &$intTheValue;
40 $b = &$arrTheArray;
41 addToArray($b, "xx3");
H A Dbug40261.phpt15 $b[$i] = $a[$i][0];
20 …$b[$i] = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678…
H A Dbug40784.phpt17 $b = new B;
H A Dbug40809.phpt19 $b[$i] = $a[$i][0];
H A Dbug40899.phpt5 list(list($a,$b),$c)=array(array('a','b'),'c');
6 echo "$a$b$c\n";
H A Dbug41351.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b))
8 foreach($a[] as $b) {
H A Dbug41351_2.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b)) - 2
8 foreach($a[]['test'] as $b) {
H A Dbug41351_3.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b)) - 3
8 foreach($a['test'][] as $b) {

Completed in 78 milliseconds

12345678910>>...96