null Core_Pagination::__call( )
public function __call($method, $params)
{
// 兼容V2中的get_***() 方法
if (substr($method, 0, 4) == 'get_')
{
$key = substr($method, 4);
return $this->__get($key);
}
throw new Exception('class Pagination not found method : '. $method);
}