Home
last modified time | relevance | path

Searched refs:C (Results 101 – 125 of 676) sorted by relevance

12345678910>>...28

/PHP-5.5/Zend/tests/
H A Dget_class_vars_002.phpt18 class C extends B {
27 new C;
44 Notice: Undefined property: C::$b in %s on line %d
46 Notice: Undefined property: C::$c in %s on line %d
H A Dns_010.phpt8 const C = "const ok\n";
23 echo Foo::C;
24 echo Y\Foo::C;
25 echo \X\Foo::C;
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 Dbug52051.phpt19 class C extends B {
20 function C() { parent::B(); }
22 new C();
/PHP-5.5/tests/classes/
H A Dconstants_basic_006.phpt5 class C
11 eval('class D extends C { const V = \'test\'; }');
20 var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
H A Dinheritance_006.phpt13 Class C extends B {
16 var_dump(new C);
19 object(C)#%d (2) {
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 Strict Standards: Declaration of D::f() should be compatible with C::f(array $a) in %s on line 5
H A Dtype_hinting_005c.phpt5 Class C { function f(SomeClass $a) {} }
8 Class D extends C { function f(array $a) {} }
12 Strict Standards: Declaration of D::f() should be compatible with C::f(SomeClass $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 Strict Standards: Declaration of D::f() 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) {
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getDocComment_001.phpt25 class C extends B {}
42 class E extends C implements I {} {}
45 class F extends C implements I {} {}
48 final class G extends C implements I {} {}
50 $classes = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'I');
78 ---> Doc comment for class C:
H A DReflectionClass_isSubclassOf_basic.phpt7 class C extends B {}
12 $classNames = array('A', 'B', 'C', 'I', 'X');
35 Is A a subclass of C?
50 Is B a subclass of C?
59 Is C a subclass of A?
62 Is C a subclass of B?
65 Is C a subclass of C?
68 Is C a subclass of I?
71 Is C a subclass of X?
80 Is I a subclass of C?
[all …]
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 ] {
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation27.phpt70 string(1) "C"
72 string(1) "C"
74 string(2) " C"
75 string(2) "C "
76 string(2) " C"
78 C"
79 string(1) "C"
80 string(1) "C"
/PHP-5.5/ext/standard/tests/array/
H A Darray_splice_variation3.phpt108 string(1) "C"
153 string(1) "C"
198 string(1) "C"
239 string(1) "C"
280 string(1) "C"
315 string(1) "C"
354 string(1) "C"
399 string(1) "C"
432 string(1) "C"
477 string(1) "C"
[all …]
/PHP-5.5/ext/standard/html_tables/
H A Dents_html5.txt30 Bscr 0212C
38 Ccaron 0010C
159 Gcirc 0011C
178 Hfr 0210C
199 Int 0222C
219 KJcy 0040C
227 LT 0003C
286 Mcy 0041C
293 Mu 0039C
420 Re 0211C
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dpreg_filter.phpt8 $replace = array('A:$0', 'B:$0', 'C:$0');
17 string(5) "A:C:1"
19 string(5) "B:C:a"
/PHP-5.5/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-5.5/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-5.5/Zend/tests/traits/
H A Dlanguage009.phpt19 trait C {
26 use C, A, B {
27 B::foo insteadof A, C;
/PHP-5.5/ext/pdo/tests/
H A Dpdo_008.phpt20 $db->exec("INSERT INTO test VALUES('C', 'C')");
35 ["C"]=>
38 string(1) "C"

Completed in 26 milliseconds

12345678910>>...28