Home
last modified time | relevance | path

Searched refs:C (Results 151 – 175 of 763) sorted by relevance

12345678910>>...31

/PHP-7.0/ext/reflection/tests/
H A DReflectionObject_isInstantiable_basic.phpt5 class C {
25 $classes = array("C", "ifaceImpl", "D");
34 Is C instantiable? bool(true)
H A DReflectionObject_isSubclassOf_basic.phpt7 class C extends B {}
12 $classNames = array('A', 'B', 'C', 'I', 'X');
49 Is A a subclass of C?
68 Is B a subclass of C?
79 Is C a subclass of A?
83 Is C a subclass of B?
87 Is C a subclass of C?
91 Is C a subclass of I?
94 Is C a subclass of X?
106 Is X a subclass of C?
H A DReflectionClass_isInstantiable_basic.phpt5 class C {
25 $classes = array("C", "iface", "ifaceImpl", "abstractClass", "D");
36 Is C instantiable? bool(true)
H A DReflectionObject_isSubclassOf.002.phpt8 class C {}
9 $ro = new ReflectionObject(new C);
18 var_dump($ro->isSubclassOf('C', 'C'));
H A Dbug39067.phpt14 class C extends B {
18 $rc = new ReflectionClass('C');
41 string(1) "C"
/PHP-7.0/tests/output/
H A Dob_start_error_004.phpt10 Class C {
13 $c = new C;
18 Warning: ob_start(): class 'C' does not have a method 'f' in %s on line %d
/PHP-7.0/ext/standard/tests/serialize/
H A Dserialization_objects_005.phpt16 $serialized = 'O:1:"C":1:{s:1:"p";i:1;}';
19 eval('Class C {}');
68 object(C)#%d (1) {
80 Notice: Undefined property: C::$x in %s on line 37
87 string(1) "C"
93 … property of an incomplete object. Please ensure that the class definition "C" of the object you a…
96 … property of an incomplete object. Please ensure that the class definition "C" of the object you a…
98 … property of an incomplete object. Please ensure that the class definition "C" of the object you a…
101 … property of an incomplete object. Please ensure that the class definition "C" of the object you a…
104 … property of an incomplete object. Please ensure that the class definition "C" of the object you a…
[all …]
/PHP-7.0/ext/filter/tests/
H A D030.phpt13 "A1080::8:800:200C:417A" => false,
14 "1080::8:Z00:200C:417A" => false,
16 "1080::8:800:200C:417A" => true,
17 "1080:0:0:0:8:800:200C:417A" => true,
/PHP-7.0/Zend/tests/
H A Dbug64239_3.phpt9 class C extends A {
25 $c = new C();
32 #0 C->Bmethod() called at [%sbug64239_3.php:%d]
H A Dget_class_vars_004.phpt14 static protected $C = 6;
50 ["C"]=>
64 ["C"]=>
H A Dconstant_expressions_classes.phpt16 'space1\C' => 'namespace space1; class C { const HW = "this is space1\C"; }',
17 'D' => 'class D { const HW = \space1\C::HW." extented by D"; }',
41 D::HW = this is space1\C extented by D
H A Djump14.phpt10 goto C;
20 C:
H A Dbug70805.phpt11 class C {
35 $t = [new C];
37 unset($t); // This is used to trigger C::__destruct while doing gc_colloct_roots
41 // but C::__destructor which is called in gc_colloct_roots will put $a into buf
/PHP-7.0/tests/classes/
H A Dstatic_properties_undeclared_isset.phpt5 Class C {}
6 var_dump(isset(C::$p));
/PHP-7.0/ext/mbstring/libmbfl/
H A DINSTALL11 Visual C++ 6.0 and Borland C++ 5.0 is suppoted.
/PHP-7.0/ext/openssl/tests/
H A Dpublic.crt2 localKeyID: E1 BC BF 63 1E 2A A4 F6 4C 71 6B E7 CE E2 6D 4A 95 CD 26 5B
3 subject=/C=PL/ST=Some-State/O=Internet Widgits Pty Ltd
4 issuer=/C=PL/ST=Some-State/O=Internet Widgits Pty Ltd
H A Dopenssl_x509_parse_basic.phpt20 …string(96) "/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnange…
23 ["C"]=>
38 ["C"]=>
156 string(59) "DB:7E:40:72:BD:5C:35:85:EC:29:29:81:12:E8:62:68:6A:B7:3F:7D"
158 string(202) "keyid:DB:7E:40:72:BD:5C:35:85:EC:29:29:81:12:E8:62:68:6A:B7:3F:7D
159 DirName:/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnangelo@ph…
168 …string(96) "/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnange…
304 string(59) "DB:7E:40:72:BD:5C:35:85:EC:29:29:81:12:E8:62:68:6A:B7:3F:7D"
306 string(202) "keyid:DB:7E:40:72:BD:5C:35:85:EC:29:29:81:12:E8:62:68:6A:B7:3F:7D
307 DirName:/C=BR/ST=Rio Grande do Sul/L=Porto Alegre/CN=Henrique do N. Angelo/emailAddress=hnangelo@ph…
/PHP-7.0/tests/lang/
H A DpassByReference_005.phpt36 class C {
98 C::v($u1);
99 C::r($u2);
103 C::vv($u1, $u2);
107 C::vr($u1, $u2);
111 C::rv($u1, $u2);
115 C::rr($u1, $u2);
120 $c = new C($u1, $u2);
182 Deprecated: Non-static method C::v() should not be called statically in %s on line 95
186 Deprecated: Non-static method C::r() should not be called statically in %s on line 96
[all …]
H A DforeachLoopObjects.005.phpt6 class C {
15 $obj = new C;
30 $obj = new C;
52 object(C)#%d (4) {
69 object(C)#%d (4) {
H A Dengine_assignExecutionOrder_001.phpt43 class C {
49 C::${f()} = g();
50 var_dump(C::$name);
53 C::$a[f()] = g();
54 var_dump(C::$a);
70 C::$string[getOffset()] = newChar();
71 var_dump(C::$string);
/PHP-7.0/ext/spl/tests/
H A DarrayObject_clone_basic2.phpt5 class C { }
7 $c = new C;
19 object(C)#1 (3) {
29 object(C)#1 (3) {
/PHP-7.0/ext/opcache/tests/
H A Dblacklist-win32.phpt26 [0] => C:\path\to\foo
27 [1] => C:\path\to\foo2
28 [2] => C:\path\to\bar
/PHP-7.0/ext/gmp/tests/
H A Dserialize.phpt17 unserialize('C:3:"GMP":0:{}');
21 unserialize('C:3:"GMP":8:{s:2:"42";}');
30 string(30) "C:3:"GMP":15:{s:2:"42";a:0:{}}"
/PHP-7.0/tests/basic/
H A Dreq60524-win.phpt4 sys_temp_dir=C:\Windows
13 C:\\Windows
/PHP-7.0/ext/standard/tests/strings/
H A Dhtmlentities21.phpt78 0000C: 262378464646443b 262378464646443b
94 0000C: 262378464646443b 262378464646443b
110 0000C: 0c 0c
126 0000C: 262378464646443b 262378464646443b
142 0000C: 262378464646443b 262378464646443b
158 0000C: 262378464646443b 262378464646443b
174 0000C: 0c 0c
190 0000C: 262378464646443b 262378464646443b

Completed in 46 milliseconds

12345678910>>...31