a was created
b was called within the autoloader with: s
<?php


class a{
    public function 
a(){
        echo 
'a was created<br/>';
        
call_user_func_array(array(&$this,'b'),array('s'));
        }    

    public function 
b($data='null'){
        echo 
'b was called within the autoloader with: ',$data,'</br>';
        }
}


$aa=new a;

highlight_file(__FILE__);

?>