Home
last modified time | relevance | path

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

12345678910>>...31

/PHP-7.4/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-7.4/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_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
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt55 $x->a = C::C;
56 ${$a . "_1"}->a = ${$a . "_1"}::C;
57 $x->{a . "_1"} = C::C;
58 $x = C::$z;
60 $x = C::${$z . "_1"};
123 declare(C=1) { echo 1; }
195 $x->a = C::C;
197 $x->{a . '_1'} = C::C;
198 $x = C::$z;
200 $x = C::${$z . '_1'};
[all …]
/PHP-7.4/ext/reflection/tests/
H A DReflectionObject_constructor_basic.phpt8 class C { }
9 $myInstance = new C;
23 string(1) "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_export_basic3.phpt5 class C {
9 class D extends C{
17 Object of class [ <user> class D extends C ] {
H A DReflectionObject_getName_basic.phpt11 class C { }
12 $myInstance = new C;
24 string(1) "C"
H A DReflectionObject_isInternal_basic.phpt5 class C {
9 $r2 = new ReflectionObject(new ReflectionClass('C'));
12 $r5 = new ReflectionObject(new C);
H A DReflectionObject_isUserDefined_basic.phpt5 class C {
9 $r2 = new ReflectionObject(new ReflectionClass('C'));
12 $r5 = new ReflectionObject(new C);
H A Dbug45571.phpt15 Class C extends A { }
17 echo new ReflectionClass("C");
21 Class [ <user> class C extends A ] {
/PHP-7.4/Zend/tests/
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 Dbug78344.phpt11 class C extends B {
16 (new C)->method();
22 #0 %s(%d): C->method()
H A Dlsb_017.phpt16 class C extends A {
21 echo A::test(B::test(C::test(D::test())))."\n";
26 C
H A Dstatic_variable_in_private_trait_method.phpt18 class C {
22 var_dump(C::method2());
24 class D extends C {
H A Dbug71428.3.phpt7 class C extends B { public function m(A $a , $n) { echo "C.m";} };
10 Warning: Declaration of C::m(A $a, $n) should be compatible with B::m(?A $a, $n) in %sbug71428.3.ph…
H A Dparent_class_name_without_parent.phpt12 class C {
16 (new C)->f();
22 #0 %s(%d): C->f()
H A Dns_037.phpt8 const C = "const ok\n";
23 echo X::C;
24 echo Y\X::C;
25 echo \X\X::C;
/PHP-7.4/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-7.4/ext/standard/tests/array/
H A Darray_splice_variation3.phpt107 string(1) "C"
152 string(1) "C"
197 string(1) "C"
238 string(1) "C"
279 string(1) "C"
314 string(1) "C"
353 string(1) "C"
398 string(1) "C"
431 string(1) "C"
476 string(1) "C"
[all …]
/PHP-7.4/Zend/tests/traits/
H A Dlanguage009.phpt19 trait C {
26 use C, A, B {
27 B::foo insteadof A, C;
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_051.phpt14 class C {
20 $o->a = new C;
27 Typed property A::$a must be string, C used
/PHP-7.4/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.4/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-7.4/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error1.phpt9 public function method() : C {}
16 class C extends B {
25 Fatal error: Declaration of B::method(): B must be compatible with A::method(): C in %s on line %d

Completed in 28 milliseconds

12345678910>>...31