Home
last modified time | relevance | path

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

12345678910>>...163

/PHP-7.4/Zend/tests/
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();
30 $x::c();
36 string(9) "__call::c"
41 string(15) "__callStatic::c"
H A Dbug48770.phpt48 $c = new C;
49 $c->func('This should work!');
H A Dbug48770_2.phpt44 $c = new C;
45 $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;
27 Fatal error: Cannot inherit previously-inherited or override constant c from interface ia in %s on …
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);
H A Dbug54804.inc2 namespace b\c {}
H A Dbug55705.phpt5 function f(callable $c) {}
H A Dbug60169.phpt8 list($c,$d) = is_array($arr)?: NULL;
H A Dbug62343.phpt7 $c = get_declared_classes();
8 var_dump(end($c));
9 var_dump(prev($c));
H A Dbug62680.phpt7 var_dump(isset($array[0]["a"]["b"]["c"]));
H A Dbug63734.phpt20 $c = new C;
21 unset($c);
H A Dbug64239_2.phpt31 $c = new C();
32 $c->test();
H A Dbug64239_3.phpt25 $c = new C();
26 $c->Bmethod();
27 $c->t2method();
H A Dbug67169.phpt8 $array[] = 'c';
14 $array[] = 'c';
21 string(1) "c"
25 string(1) "c"
H A Dbug67633.phpt14 $c = 'c';
15 $array = ['a', 'b', $c];
35 string(1) "c"
H A Dbug67922.phpt13 $b->c = new C;
14 $b->c->test()->d = 'str';
/PHP-7.4/Zend/tests/bug67436/
H A Da.inc4 public function test($arg = c::TESTCONSTANT) {
H A Dbug67436.phpt9 if (in_array($classname, array('a','b','c'))) {
23 a::test(c::TESTCONSTANT)
H A Dbug67436_nohandler.phpt7 if (in_array($classname, array('a','b','c'))) {
17 Warning: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT) in %s%e…
19 a::test(c::TESTCONSTANT)
H A Dc.inc3 class c {
4 const TESTCONSTANT = "c::TESTCONSTANT";

Completed in 54 milliseconds

12345678910>>...163