Returns a Pagination property.
mixed Core_Pagination::__get( string $key )
参数列表
参数 类型 描述 默认值 $key
string
URI of the request
mixed
Pagination property; null if not foundpublic function __get($key)
{
if (false===$this->_is_renew)
{
$this->renew();
}
return isset($this->$key) ? $this->$key : null;
}