Home
last modified time | relevance | path

Searched refs:c (Results 76 – 100 of 2173) sorted by path

12345678910>>...87

/php-src/Zend/tests/
H A Dbug34045.phpt15 $c = __CLASS__;
16 self::$instance = new $c;
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
11 $c = new C();
13 $arr = array (1 => 'a', 2 => 'b', 3 => 'c');
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
31 3 => c
34 3 => c
H A Dbug34786.phpt5 function foo($a,$b,$c) {
H A Dbug37715.phpt25 // Alternatively $c = $a; and foreachloop removal will cause identical results.
H A Dbug38772.phpt36 $c = new C();
H A Dbug39449.phpt16 $a->arr = array('a','b','c');
34 2 => c
38 2 => c
H A Dbug40509.phpt9 $c = $arr["v"];
10 foreach ($c as $v) {}
H A Dbug40899.phpt5 list(list($a,$b),$c)=array(array('a','b'),'c');
6 echo "$a$b$c\n";
H A Dbug42798.phpt10 function foo($c = ok::constant) {
H A Dbug42817.phpt6 array_push($a->b, $c);
H A Dbug43200.phpt14 abstract class c {
18 class x extends c implements a, b {
26 Class [ <user> class x extends c implements a, b ] {
46 Method [ <user, inherits c, prototype a> public method bar ] {
H A Dbug43201.phpt14 $c = new Foo();
16 $c->arr[0]["k"] = 1;
17 $c->arr[0]["k2"] = $ref;
20 $c->arr[$cnt]["k2"] = $ref;
H A Dbug43426.phpt6 call_user_func("foo2", $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
8 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
10 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
12 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
14 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
16 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
18 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
20 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
22 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
24 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
[all …]
H A Dbug47054.phpt22 $c = new C();
23 $c->s();
H A Dbug48215_2.phpt10 class c extends b {
15 $c = new c();
21 #0 %s(%d): c->__construct()
H A Dbug48408.phpt16 $c = new C;
18 $b->process($c->generate(0));
21 $c->generate(0);
H A Dbug48409.phpt32 $c = new CCC;
36 $c->process($b->xyz($item['foo'], $i));
H A Dbug48533.phpt13 protected function c() {
27 $x->c();
29 $x::c();
36 string(9) "__call::c"
38 string(15) "__callStatic::c"
H A Dbug48770.phpt29 $c = new C;
30 $c->callFuncInParent('Which function will be called??');
H A Dbug48770_2.phpt52 $c = new C;
53 $c->func('This should work!');
H A Dbug48770_3.phpt43 $c = new C;
44 $c->func('This should work!');
H A Dbug49472.phpt7 const c = 'Sea';
16 const c = 'Ocean';
19 return ia::c;
H A Dbug52001.phpt11 function a($b,$c) {}
H A Dbug53958.phpt26 $c = 1;
27 $fn1 = function() use (&$c) {echo "$c\n"; $c++;};
28 $fn2 = function() use ($c) {echo "$c\n"; $c++;};
29 $c = 5;
H A Dbug54013.phpt14 $c = new a;
15 $c->b('waa?', 'meukee!');
17 $reflectionClass = new ReflectionClass($c);

Completed in 25 milliseconds

12345678910>>...87