选择语言 :

 Core_Pagination::__get

Returns a Pagination property.

mixed Core_Pagination::__get( string $key )

参数列表

参数 类型 描述 默认值
$key string URI of the request
返回值
  • mixed Pagination property; null if not found
File: ./core/classes/pagination.class.php
public function __get($key)
{
    if (false===$this->_is_renew)
    {
        $this->renew();
    }

    return isset($this->$key) ? $this->$key : null;
}