选择语言 :

 Core_Pagination::__call

null Core_Pagination::__call( )
File: ./core/classes/pagination.class.php
512
513
514
515
516
517
518
519
520
521
522
523
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);
}