选择语言 :

 Core_Pagination::__call

null Core_Pagination::__call( )
File: ./core/classes/pagination.class.php
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);
}