Mantis - Quercus
Viewing Issue Advanced Details
1907 major always 07-29-07 00:10 09-18-07 19:04
ssozonoff  
sam  
normal  
closed 3.1.2  
fixed  
none    
none 3.1.3  
0001907: Extending PHP's ArrayObject does not work.
I have not tested extending other "native" PHP objects but this could be a general issue.

test code:

<?php
class Ao_Test extends ArrayObject {

  public function hello() {
    echo "Hello";
  }
}

$t = new Ao_Test();
$t->hello();
?>

Notes
(0002152)
ssozonoff   
07-29-07 02:22   
The error message when you run the code is.

"Fatal Error: 'Ao_Test' is an unknown class name."
(0002302)
sam   
09-18-07 19:04   
ArrayObject is now implemented