Home
last modified time | relevance | path

Searched refs:C (Results 76 – 100 of 676) sorted by relevance

12345678910>>...28

/PHP-5.5/tests/classes/
H A Dstatic_properties_003_error4.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_undeclared_inc.phpt5 Class C {}
6 C::$p++;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3
H A Dstatic_properties_undeclared_assign.phpt5 Class C {}
6 C::$p = 1;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3
H A Dstatic_properties_undeclared_assignInc.phpt5 Class C {}
6 C::$p += 1;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3
H A Dstatic_properties_undeclared_read.phpt5 Class C {}
6 echo C::$p;
9 Fatal error: Access to undeclared static property: C::$p in %s on line 3
H A Dtype_hinting_005a.phpt5 Class C { function f(array $a) {} }
8 Class D1 extends C { function f(array $a) {} }
11 Class D2 extends C { function f(SomeClass $a) {} }
15 Strict Standards: Declaration of D2::f() should be compatible with C::f(array $a) in %s on line 8
H A Dautoload_020.phpt10 var_dump(unserialize('O:1:"C":0:{}'));
13 in autoload: C
16 string(1) "C"
H A Dstatic_properties_undeclared_assignRef.phpt5 Class C {}
7 C::$p =& $a;
10 Fatal error: Access to undeclared static property: C::$p in %s on line 4
H A Dproperty_recreate_private.phpt5 class C {
15 class D extends C {
41 $c = new C;
47 $c = new C;
56 [%u|b%"p":%u|b%"C":private]=>
74 object(C)#%d (1) {
75 [%u|b%"p":%u|b%"C":private]=>
81 Fatal error: Cannot access private property C::$p in %s on line 46
H A Dconstants_basic_005.phpt5 class C
11 var_dump(C::CONST_1, C::CONST_2);
/PHP-5.5/ext/standard/tests/strings/
H A Dconvert_uuencode_basic.phpt50 string(8) "#86)C
54 string(12) "&,6$R8C-C
58 string(82) "M2&5R92!I<R!A('-I;7!L92!S=')I;F<@=&\@=&5S="!C;VYV97)T7W5U96YC
63 string(74) "M"2!4:&ES(%-T<FEN9R!C;VYT86EN<R`)"2!S;VUE(&-O;G1R;VP@8VAA<F%C
76 string(8) "#86)C
80 string(12) "&,6$R8C-C
85 +<F%C=&5R<UQR7&X`
/PHP-5.5/ext/pdo/tests/
H A Dpdo_007.phpt20 $db->exec("INSERT INTO test VALUES('C', 'C')");
43 ["C"]=>
46 string(1) "C"
60 ["C"]=>
63 string(1) "C"
H A Dpdo_011.phpt123 test(3,C)
139 string(1) "C"
151 Test1::factory(3,C)
152 Test1::__construct(3,C)
175 string(1) "C"
189 Test1::factory(3,C)
190 Test1::__construct(3,C)
213 string(1) "C"
242 string(1) "C"
268 string(1) "C"
[all …]
/PHP-5.5/tests/lang/
H A DforeachLoopObjects.004.phpt6 class C {
15 $obj = new C;
37 Notice: Undefined property: C::$b in %s on line %d
40 Notice: Undefined property: C::$b in %s on line %d
43 Notice: Undefined property: C::$b in %s on line %d
45 object(C)#%d (4) {
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_toString_003.phpt14 Class C extends B {
17 Class D extends C {
20 foreach (array('A', 'B', 'C', 'D') as $class) {
78 ----( Reflection class C: )----
79 Class [ <user> class C extends B ] {
100 Class [ <user> class D extends C ] {
H A DReflectionClass_export_basic1.phpt9 C $c = null,
17 Class C extends A { }
20 ReflectionClass::export("C");
23 Class [ <user> class C extends A ] {
53 Parameter #2 [ <optional> C or NULL $c = NULL ]
H A DReflectionClass_toString_002.phpt14 Class C extends B {
17 Class D extends C {
20 foreach (array('A', 'B', 'C', 'D') as $class) {
78 ----( Reflection class C: )----
79 Class [ <user> class C extends B ] {
103 Class [ <user> class D extends C ] {
/PHP-5.5/ext/pdo_firebird/tests/
H A Dbug_53280.phpt14 $dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))');
15 $dbh->exec("INSERT INTO testz VALUES ('A', 'B', 'C')");
19 $stmt2 = "SELECT B, C FROM testz WHERE A = ? AND B = ?";
49 ["C"]=>
50 string(1) "C"
52 string(1) "C"
/PHP-5.5/tests/output/
H A Dob_start_basic_005.phpt10 Class C {
23 var_dump(ob_start('C::h'));
28 Warning: ob_start(): non-static method C::h() should not be called statically in %s on line 20
32 [0] => C::h
H A Dob_start_basic_006.phpt17 Class C {
28 return "C::g[call:$i; len:$len] - $string\n";
35 return "C::h[call:$i; len:$len; id:$this->id] - $string\n";
53 var_dump(ob_start(array("f", "C::g", "f", "C::g")));
71 var_dump(ob_start(array('f', 'C::g', array(array($c, "g"), array($c, "h")))));
116 C::h[call:1; len:37; id:originalID] - bool(true)
119 [0] => C::h
122 C::h[call:2; len:37; id:changedID] - bool(true)
125 [0] => C::h
/PHP-5.5/Zend/tests/
H A Dbug64239_4.phpt9 class C extends A {
24 C::Bmethod();
25 C::t2method();
30 #0 C::Bmethod() called at [%sbug64239_4.php:%d]
H A Dbug28442.phpt23 ClassC::$prop = 'C';
51 string(1) "C"
52 string(1) "C"
55 string(1) "C"
56 string(1) "C"
/PHP-5.5/ext/spl/tests/
H A Dbug54323.phpt5 class C {
6 public $prop = 'C::prop.orig';
10 $c = new C;
20 Notice: Undefined property: C::$prop in %sbug54323.php on line 14
/PHP-5.5/ext/standard/tests/class_object/
H A Dforward_static_call_003.phpt24 class C
26 const NAME = 'C';
38 C::test();
48 C
/PHP-5.5/ext/mbstring/tests/
H A Dphp_gr_jp_dev_884-2.phpt10 var_dump(mb_ereg_replace("C?$", "Z", "ABC"));
11 var_dump(ereg_replace("C?$", "Z", "ABC"));
12 var_dump(mb_ereg_replace("C*$", "Z", "ABC"));
13 var_dump(ereg_replace("C*$", "Z", "ABC"));

Completed in 23 milliseconds

12345678910>>...28