Home
last modified time | relevance | path

Searched refs:C (Results 51 – 75 of 676) sorted by relevance

12345678910>>...28

/PHP-5.5/ext/spl/tests/
H A Diterator_011.phpt15 $it = new ArrayIterator(array(0 => 'A', 1 => 'B', 2 => 'C', 3 => 'D'));
25 $it = new ArrayIterator(array(0 => 'A', 1 => 'B', 2 => 'C', 3 => 'D'));
40 2=>C
44 2=>C
47 2=>C
49 2=>C
H A Diterator_018.phpt15 $it = new ArrayIterator(array(0 => 'A', 1 => 'B', 2 => 'C', 3 => 'D'));
25 $it = new ArrayIterator(array(0 => 'A', 1 => 'B', 2 => 'C', 3 => 'D'));
40 2=>C
44 2=>C
47 2=>C
49 2=>C
H A DarrayObject_clone_basic3.phpt5 class C {
6 public $p = 'C::p.orig';
9 $wrappedObject = new C;
25 object(C)#1 (5) {
27 string(9) "C::p.orig"
39 object(C)#1 (5) {
41 string(9) "C::p.orig"
56 object(C)#1 (5) {
58 string(9) "C::p.orig"
74 string(9) "C::p.orig"
H A DarrayObject_exchangeArray_basic3.phpt6 class C {
11 $original = new C;
13 $swapIn = new C;
27 $original = new C;
40 $original = new C;
56 object(C)#3 (2) {
63 object(C)#1 (2) {
69 object(C)#3 (2) {
88 object(C)#3 (2) {
95 object(C)#3 (2) {
[all …]
H A DarrayObject_setFlags_basic2.phpt5 class C extends ArrayObject {
13 $c = new C(array('x'=>'public'));
16 C::go($c);
21 C::go($c);
29 Fatal error: Cannot access private property C::$x in %s on line 19
H A DarrayObject_asort_basic2.phpt13 Class C {
20 $c = new C;
31 object(C)#1 (4) {
32 ["prop3":"C":private]=>
42 object(C)#1 (4) {
43 ["prop3":"C":private]=>
H A DarrayObject_ksort_basic2.phpt13 Class C {
20 $c = new C;
31 object(C)#1 (4) {
32 ["b":"C":private]=>
42 object(C)#1 (4) {
43 ["b":"C":private]=>
/PHP-5.5/Zend/tests/
H A Dbug47054.phpt6 class C {
11 class D extends C {
20 C::s();
22 $c = new C();
32 Called class: C
33 Called class: C
H A Dns_058.phpt5 const C = "const ok\n";
12 const C = "const ok\n";
13 const C2 = namespace\C;
23 function f1($x=namespace\C) {
26 function f2($x=namespace\foo::C) {
34 echo namespace\C;
36 echo namespace\foo::C;
H A Dns_057.phpt7 const C = "const ok\n";
14 const C = "const ok\n";
15 const C2 = namespace\C;
25 function f1($x=namespace\C) {
28 function f2($x=namespace\foo::C) {
36 echo namespace\C;
38 echo namespace\foo::C;
/PHP-5.5/ext/mbstring/tests/
H A Dmb_encode_mimeheader_indent.phpt243 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20=CE=B5?=
251 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20=CE=B5?=
291 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
299 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
307 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
315 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
323 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
332 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C=20?=
341 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C?=
350 string(249) "=?UTF-8?Q?=CE=91=CF=85=CF=84=CF=8C?=
[all …]
H A Dbug49354.phpt7 $crap = 'AåBäCöDü';
16 string(12) "AåBäCöDü"
17 string(11) "åBäCöDü"
18 string(11) "åBäCöDü"
19 string(9) "BäCöDü"
/PHP-5.5/ext/reflection/tests/
H A DReflectionObject_getConstructor_basic.phpt40 class C extends B {
41 function C() {}
44 class D1 extends C {
48 class D2 extends C {
52 'OldAndNewCtor', 'NewAndOldCtor', 'B', 'C', 'D1', 'D2', 'X', 'Y');
75 Constructor of C: C
77 Constructor of D2: C
H A Dbug43926.phpt14 class C extends A {
18 $rc = new ReflectionClass('C');
28 print("Is? C ". ($rc->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof C) ? …
33 print("Is? C ". ($rc->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof C) ? …
38 print("Is? C ". ($rc->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof C) ? …
43 print("Is? C ". ($rc->isInstance($ce) ? 'true' : 'false') .", instanceof: ". (($ce instanceof C) ? …
50 Is? C false, instanceof: false
55 Is? C true, instanceof: true
60 Is? C false, instanceof: false
65 Is? C false, instanceof: false
H A DReflectionClass_FileInfo_basic.phpt5 //New instance of class C - defined below
6 $rc = new ReflectionClass("C");
8 //Get the file name of the PHP script in which C is defined
11 //Get the line number at the start of the definition of class C
14 //Get the line number at the end of the definition of class C
23 Class C {
H A DReflectionParameter_invalidMethodInConstructor.phpt13 new ReflectionParameter (array ('C', 'b'), 0);
18 new ReflectionParameter (array (new C, 'b'), 0);
23 class C {
29 Method C::b() does not exist
30 Method C::b() does not exist
H A DReflectionClass_getDefaultProperties_001.phpt46 class C extends B {
51 public $pubC = "pubC in C";
52 protected $protC = "protC in C";
53 private $privC = "privC in C";
143 ---- Static properties in C ----
146 [statPubC] => stat pubC in C
156 ---- Default properties in C ----
159 [statPubC] => stat pubC in C
166 [pubC] => pubC in C
167 [protC] => protC in C
[all …]
H A DReflectionClass_isInstance_basic.phpt9 class C implements I {}
13 $classes = array("A", "B", "C", "I", "X");
17 "myC" => new C,
40 is myA a C? bool(false)
41 is myB a C? bool(false)
42 is myC a C? bool(true)
43 is myX a C? bool(false)
/PHP-5.5/win32/build/
H A Dphpize.js.in227 C.WriteLine('PHP_DSP="yes"');
228 C.WriteBlankLines(1);
231 C.WriteLine('PHP_DSP="no"');
232 C.WriteBlankLines(1);
250 C.WriteLine("try {");
251 C.WriteLine(item);
254 C.WriteLine("}");
257 C.WriteBlankLines(1);
259 C.WriteBlankLines(1);
263 C.Write(modules);
[all …]
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_009.phpt16 $ser = 'C:1:"C":6:{dasdas}';
18 eval('class C {}');
28 Warning: Class C has no unserializer in %sserialization_objects_009.php on line %d
31 string(1) "C"
33 object(C)#%d (0) {
/PHP-5.5/Zend/tests/traits/
H A Dbug60217a.phpt14 class C {
18 echo "C::foo() works.\n";
22 $o = new C;
26 C::foo() works.
/PHP-5.5/tests/classes/
H A Dmethod_call_variation_001.phpt5 class C
9 echo "Called C::foo($a, $b)\n";
13 $c = new C;
34 Called C::foo(1, 2)
35 Called C::foo(3, 4)
H A Dstatic_properties_003_error1.phpt5 class C {
6 protected static $y = 'C::$y';
8 $c = new C;
18 Fatal error: Cannot access protected property C::$y in %s on line 8
H A Dstatic_properties_003_error2.phpt5 class C {
6 protected static $y = 'C::$y';
8 $c = new C;
18 Fatal error: Cannot access protected property C::$y in %s on line 8
H A Dstatic_properties_003_error3.phpt5 class C {
6 protected static $y = 'C::$y';
8 $c = new C;
18 Fatal error: Cannot access protected property C::$y in %s on line 8

Completed in 27 milliseconds

12345678910>>...28