Home
last modified time | relevance | path

Searched refs:C (Results 126 – 150 of 763) sorted by relevance

12345678910>>...31

/PHP-7.0/ext/reflection/tests/
H A DReflectionObject_constructor_basic.phpt8 class C { }
9 $myInstance = new C;
23 string(1) "C"
H A DReflectionObject_export_basic3.phpt5 class C {
9 class D extends C{
17 Object of class [ <user> class D extends C ] {
H A Dbug45571.phpt15 Class C extends A { }
17 ReflectionClass::export("C");
21 Class [ <user> class C extends A ] {
H A DReflectionObject_isUserDefined_basic.phpt5 class C {
9 $r2 = new ReflectionObject(new ReflectionClass('C'));
12 $r5 = new ReflectionObject(new C);
H A DReflectionObject_getName_basic.phpt11 class C { }
12 $myInstance = new C;
25 string(1) "C"
H A DReflectionObject_isInternal_basic.phpt5 class C {
9 $r2 = new ReflectionObject(new ReflectionClass('C'));
12 $r5 = new ReflectionObject(new C);
/PHP-7.0/tests/classes/
H A Dstatic_properties_004.phpt5 class C { public static $p = 'original'; }
6 class D extends C { }
10 var_dump(C::$p, D::$p, E::$p);
14 var_dump(C::$p, D::$p, E::$p);
19 var_dump(C::$p, D::$p, E::$p);
H A Dtype_hinting_005b.phpt5 Class C { function f(array $a) {} }
8 Class D extends C { function f($a) {} }
12 Warning: Declaration of D::f($a) should be compatible with C::f(array $a) in %s on line 5
H A Dtype_hinting_005d.phpt5 Class C { function f($a) {} }
8 Class D extends C { function f(array $a) {} }
12 Warning: Declaration of D::f(array $a) should be compatible with C::f($a) in %s on line 5
H A Dconstants_basic_004.phpt22 class C extends B
36 var_dump(X::$sa_x, B::$sa_b, C::$sa_b, C::$sa_c_parent, C::$sa_c_self);
41 $c = new C;
83 object(C)#%d (3) {
H A Dtype_hinting_005c.phpt5 Class C { function f(SomeClass $a) {} }
8 Class D extends C { function f(array $a) {} }
12 Warning: Declaration of D::f(array $a) should be compatible with C::f(SomeClass $a) in %s on line 5
/PHP-7.0/tests/output/
H A Dob_start_error_002.phpt10 Class C {
17 var_dump(ob_start(array("C","nonExistent")));
18 var_dump(ob_start("C::no"));
28 Warning: ob_start(): class 'C' does not have a method 'nonExistent' in %s on line 14
33 Warning: ob_start(): class 'C' does not have a method 'no' in %s on line 15
/PHP-7.0/Zend/tests/
H A Dns_037.phpt8 const C = "const ok\n";
23 echo X::C;
24 echo Y\X::C;
25 echo \X\X::C;
H A Dlsb_017.phpt16 class C extends A {
21 echo A::test(B::test(C::test(D::test())))."\n";
26 C
H A Dparent_class_name_without_parent.phpt12 class C {
16 (new C)->f();
22 #0 %s(%d): C->f()
H A Dbug74657.phpt9 class C {
16 var_dump((new C)->options);
19 var_dump((new C)->options);
H A Dget_class_vars_006.phpt12 class C extends B { }
16 var_dump(get_class_vars('C'));
24 var_dump(get_class_vars('C'));
H A Dbug48408.phpt10 class C{
16 $c = new C;
28 #0 %s(%d): C->generate(0)
H A Dget_class_vars_003.phpt18 var_dump(get_class_vars('C'));
22 class C extends B {
32 new C;
H A Dbug71428.3.phpt9 class C extends B { public function m(A $a , $n) { echo "C.m";} };
12 Warning: Declaration of C::m(A $a, $n) should be compatible with B::m(A $a = NULL, $n) in %sbug7142…
H A Dns_059.phpt5 const C = array();
6 var_dump(C);
/PHP-7.0/ext/standard/tests/file/
H A Dstream_rfc2397_007.phpt45 echo "===S:1,C===\n";
49 echo "===S:-2,C===\n";
53 echo "===S:-10,C===\n";
61 echo "===S:10,C===\n";
113 ===S:1,C===
117 ===S:-2,C===
121 ===S:-10,C===
129 ===S:10,C===
/PHP-7.0/Zend/tests/traits/
H A Dlanguage009.phpt19 trait C {
26 use C, A, B {
27 B::foo insteadof A, C;
/PHP-7.0/ext/pdo/tests/
H A Dpdo_008.phpt20 $db->exec("INSERT INTO test VALUES('C', 'C')");
35 ["C"]=>
38 string(1) "C"
/PHP-7.0/ext/standard/tests/general_functions/
H A Dcallbacks_001.phpt20 class C extends B {
27 $this->call(array('C', 'parent::who'));
31 $this->call(array('C', 'who'));
48 $o = new C;
86 C|parent::who
94 C|who

Completed in 23 milliseconds

12345678910>>...31