选择语言 :

 Module_Database_Result::__call

null Module_Database_Result::__call( )
File: ./modules/database/result.class.php
public function __call($m,$v)
{
    if ( method_exists( $this->_result ,$m ) )
    {
        return call_user_func_array(array($this->_result,$m), $v);
    }
    else
    {
        throw new Exception('method not found in ' . get_class($this));
    }
}