Home
last modified time | relevance | path

Searched refs:C (Results 1 – 25 of 963) sorted by relevance

12345678910>>...39

/PHP-8.2/ext/oci8/tests/
H A Dbug43492.phpt75 A B C D E F G H I J
76 A B C D E F G H I J
77 A B C D E F G H I J
78 A B C D E F G H I J
79 A B C D E F G H I J
80 A B C D E F G H I J
81 A B C D E F G H I J
82 A B C D E F G H I J
83 A B C D E F G H I J
84 A B C D E F G H I J
[all …]
H A Dbug43492_2.phpt66 A B C D E F G H I J
67 A B C D E F G H I J
68 A B C D E F G H I J
69 A B C D E F G H I J
70 A B C D E F G H I J
71 A B C D E F G H I J
72 A B C D E F G H I J
73 A B C D E F G H I J
74 A B C D E F G H I J
75 A B C D E F G H I J
[all …]
/PHP-8.2/ext/standard/tests/class_object/
H A Dmethod_exists_basic_001.phpt14 Class C extends B {
33 echo "Does C::$method exist? ";
38 $myC = new C;
40 echo "Does C::$method exist? ";
54 Does C::pub exist? bool(true)
55 Does C::prot exist? bool(true)
56 Does C::priv exist? bool(true)
57 Does C::static_pub exist? bool(true)
69 Does C::pub exist? bool(true)
70 Does C::prot exist? bool(true)
[all …]
H A Dget_class_methods_basic_003.phpt14 class C implements I {
22 echo "Accessing I from C:\n";
24 echo "Accessing C from C:\n";
25 var_dump(get_class_methods("C"));
32 echo "Accessing C from global scope:\n";
33 var_dump(get_class_methods("C"));
34 C::testFromC();
43 Accessing C from global scope:
52 Accessing I from C:
57 Accessing C from C:
H A Dget_class_methods_basic_002.phpt9 class C {
15 echo "Accessing C from C:\n";
17 echo "Accessing D from C:\n";
19 echo "Accessing X from C:\n";
24 class D extends C {
57 C::testFromC();
75 Accessing C from C:
86 Accessing D from C:
103 Accessing X from C:
110 Accessing C from D:
[all …]
/PHP-8.2/tests/classes/
H A Dconstants_basic_001.phpt10 class C
33 var_dump(C::c1);
34 var_dump(C::c2);
35 var_dump(C::c3);
36 var_dump(C::c4);
37 var_dump(C::c5);
38 var_dump(C::c6);
39 var_dump(C::c7);
40 var_dump(C::c8);
41 var_dump(C::c9);
[all …]
/PHP-8.2/Zend/tests/
H A Dgh9500.phpt7 var A|(B&C) $a;
8 var (B&C)|A $b;
9 private A|(B&C) $c;
10 private (B&C)|A $d;
11 static A|(B&C) $e;
12 static (B&C)|A $f;
13 private static A|(B&C) $g;
14 private static (B&C)|A $h;
15 readonly private A|(B&C) $i;
17 readonly A|(B&C) $k;
[all …]
H A Dbug37212.phpt29 class C extends A {}
33 $C = new C("C");
34 var_dump($C);
36 $B->copyValue($C);
46 object(C)#%d (1) {
48 string(1) "C"
52 string(1) "C"
H A Dbug42819.phpt7 const C = "foo\\foo\\C\n";
12 const C = "foo\\foo\\foo::C\n";
18 const C = "foo\\C\n";
22 const C = "foo\\foo::C\n";
84 echo C;
144 foo\C
145 foo\foo\C
147 foo\foo::C
152 foo\C
153 foo\foo\C
[all …]
/PHP-8.2/ext/intl/tests/
H A Dnormalizer_normalize.phpt99 '%C3%A4%7C%7C%C3%A5%7C%7C%C3%B6' normalized to form 'UNORM_FORM_C' is '%C3%A4%7C%7C%C3%A5%7C%7C%C3%…
101 '%E2%84%AB%7C%7C%C3%85%7C%7CA%CC%8A' normalized to form 'UNORM_FORM_C' is '%C3%85%7C%7C%C3%85%7C%7C
103 '%E2%84%A6%7C%7C%CE%A9' normalized to form 'UNORM_FORM_C' is '%CE%A9%7C%7C%CE%A9' error info: 'U_ZE…
111 '%C3%A4%7C%7C%C3%A5%7C%7C%C3%B6' normalized to form 'UNORM_FORM_D' is 'a%CC%88%7C%7Ca%CC%8A%7C%7Co%…
113 '%E2%84%AB%7C%7C%C3%85%7C%7CA%CC%8A' normalized to form 'UNORM_FORM_D' is 'A%CC%8A%7C%7CA%CC%8A%7C%…
115 '%E2%84%A6%7C%7C%CE%A9' normalized to form 'UNORM_FORM_D' is '%CE%A9%7C%7C%CE%A9' error info: 'U_ZE…
123 '%C3%A4%7C%7C%C3%A5%7C%7C%C3%B6' normalized to form 'UNORM_FORM_KC' is '%C3%A4%7C%7C%C3%A5%7C%7C%C3…
125 '%E2%84%AB%7C%7C%C3%85%7C%7CA%CC%8A' normalized to form 'UNORM_FORM_KC' is '%C3%85%7C%7C%C3%85%7C%7
127 '%E2%84%A6%7C%7C%CE%A9' normalized to form 'UNORM_FORM_KC' is '%CE%A9%7C%7C%CE%A9' error info: 'U_Z…
135 '%C3%A4%7C%7C%C3%A5%7C%7C%C3%B6' normalized to form 'UNORM_FORM_KD' is 'a%CC%88%7C%7Ca%CC%8A%7C%7Co…
[all …]
/PHP-8.2/Zend/tests/named_params/
H A Dcall_user_func.phpt72 a = A, b = b, c = C
73 a = A, b = b, c = C
74 a = a, b = b, c = C
79 string(1) "C"
94 a = A, b = b, c = C
99 string(1) "C"
101 a = A, b = b, c = C
106 string(1) "C"
109 a = A, b = b, c = C
110 a = A, b = b, c = C
[all …]
H A Dbasic.phpt73 a=A, b=B, c=C, d=D, e=E
74 a=A, b=B, c=C, d=D, e=E
75 a=A, b=B, c=C, d=D, e=E
76 a=A, b=B, c=C, d=d, e=E
78 a=A, b=B, c=C, d=D, e=E
79 a=A, b=B, c=C, d=D, e=E
80 a=A, b=B, c=C, d=D, e=E
81 a=A, b=B, c=C, d=d, e=E
83 a=A, b=B, c=C, d=D, e=E
84 a=A, b=B, c=C, d=D, e=E
[all …]
/PHP-8.2/Zend/tests/constexpr/
H A Dnew_arg_eval.phpt6 class C {
10 $a = new C(__CLASS__),
11 $b = new C(__FUNCTION__),
12 $c = new C(x: __FILE__),
19 function test2($p = new C(new C(__FUNCTION__))) {
26 object(C)#1 (1) {
30 object(C)#2 (1) {
34 object(C)#3 (1) {
38 object(C)#3 (1) {
40 object(C)#2 (1) {
/PHP-8.2/ext/reflection/tests/
H A DReflectionClass_getMethods_003.phpt8 class C {
50 string(1) "C"
57 string(1) "C"
64 string(1) "C"
71 string(1) "C"
80 string(1) "C"
87 string(1) "C"
94 string(1) "C"
101 string(1) "C"
110 string(1) "C"
[all …]
H A DReflectionClass_getProperties_003.phpt8 class C {
48 string(1) "C"
55 string(1) "C"
62 string(1) "C"
69 string(1) "C"
78 string(1) "C"
85 string(1) "C"
92 string(1) "C"
99 string(1) "C"
108 string(1) "C"
[all …]
H A DReflectionClass_getProperty_004.phpt28 class C extends B {
40 $myC = new C;
85 showInfo("C::pubC");
86 showInfo("C::protC");
139 string(1) "C"
147 string(1) "C"
155 string(1) "C"
213 string(1) "C"
223 string(1) "C"
231 string(1) "C"
[all …]
H A DReflectionProperty_getModifiers_basic.phpt6 class C {
15 class D extends C {
25 $rp = new ReflectionProperty("C", "a$i");
26 echo "C::a$i: ";
35 C::a1: int(1)
37 C::a2: int(2)
39 C::a3: int(4)
41 C::a4: int(17)
43 C::a5: int(18)
45 C::a6: int(20)
H A DReflectionClass_getProperty_003.phpt28 class C extends B {
40 $myC = new C;
81 showInfo("C::pubC");
82 showInfo("C::protC");
135 string(1) "C"
143 string(1) "C"
151 string(1) "C"
209 string(1) "C"
219 string(1) "C"
227 string(1) "C"
[all …]
H A Dproperty_exists.phpt169 ===C===
170 C::$a
172 C::$b
174 C::$c
176 C::$d
178 C::$e
181 C::$a
183 C::$b
185 C::$c
187 C::$d
[all …]
/PHP-8.2/ext/standard/tests/serialize/
H A Dserialization_objects_011.phpt26 Class C extends B {
64 prettyPrint(new C);
137 object(C)#%d (10) {
141 string(7) "C.AProt"
143 string(6) "C.APub"
151 string(7) "C.APriv"
157 string(6) "C.CPub"
160C":10:{s:8:"\0A\0APriv";s:7:"A.APriv";s:8:"\0*\0AProt";s:7:"C.AProt";s:4:"APub";s:6:"C.APub";s:8:"…
162 object(C)#%d (10) {
168 string(6) "C.APub"
[all …]
H A Dunserialize_subclasses.phpt6 class C {}
7 class D extends C {}
9 $c = serialize(new C);
12 var_dump(unserialize($c, ["allowed_classes" => ["C"]]));
14 var_dump(unserialize($d, ["allowed_classes" => ["C"]]));
18 object(C)#%d (0) {
22 string(1) "C"
/PHP-8.2/win32/build/
H A Dbuildconf.js119 C.WriteLine("false // dummy");
121 C.WriteLine(");");
236 C.WriteLine("try {");
237 C.WriteLine(item);
238 C.WriteLine("} catch (e) {");
240 C.WriteLine("}");
243 C.WriteBlankLines(1);
245 C.WriteBlankLines(1);
249 C.WriteBlankLines(1);
253 C.Write(modules);
[all …]
/PHP-8.2/Zend/tests/constants/final_constants/
H A Dfinal_const11.phpt6 class C
8 const C = 1;
13 const C = 1;
16 class C2 extends C implements I
22 Fatal error: Class C2 inherits both C::C and I::C, which is ambiguous in %s on line %d
/PHP-8.2/ext/spl/tests/
H A Dspl_autoload_010.phpt14 echo "C -> $name\n";
15 class C{}
22 new C;
25 B -> C
26 A -> C
27 C -> C
/PHP-8.2/Zend/tests/type_declarations/
H A Dstatic_type_trait.phpt12 class C {
15 class P extends C {
18 $c = new C;
27 object(C)#1 (0) {
34 Fatal error: Uncaught TypeError: C::test(): Return value must be of type P, C returned in %s:%d
36 #0 %s(%d): C->test(Object(C))

Completed in 48 milliseconds

12345678910>>...39