Lines Matching refs:C
28 class C extends B {
29 public $pubC = "pubC in C";
30 protected $protC = "protC in C";
31 private $privC = "privC in C";
40 $myC = new C;
41 $rc = new ReflectionClass("C");
85 showInfo("C::pubC");
86 showInfo("C::protC");
87 showInfo("C::privC");
113 Cannot access non-public property C::$protA
115 Property C::$privA does not exist
131 Cannot access non-public property C::$protB
133 Property C::$privB does not exist
139 string(1) "C"
141 string(9) "pubC in C"
147 string(1) "C"
149 Cannot access non-public property C::$protC
155 string(1) "C"
157 Cannot access non-public property C::$privC
159 Property C::$doesNotExist does not exist
167 string(9) "pubC in C"
191 string(9) "pubC in C"
213 string(1) "C"
215 string(9) "pubC in C"
217 Property C::$PUBC does not exist
218 --- (Reflecting on C::pubC) ---
223 string(1) "C"
225 string(9) "pubC in C"
226 --- (Reflecting on C::protC) ---
231 string(1) "C"
233 Cannot access non-public property C::$protC
234 --- (Reflecting on C::privC) ---
239 string(1) "C"
241 Cannot access non-public property C::$privC
243 Fully qualified property name X::$pubC does not specify a base class of C
245 Fully qualified property name X::$protC does not specify a base class of C
247 Fully qualified property name X::$privC does not specify a base class of C
249 Fully qualified property name X::$doesNotExist does not specify a base class of C