Updates a single config setting, and recalculates pagination if needed.
void Core_Pagination::__set( string $key , mixed $value )
参数列表
参数 类型 描述 默认值 $key
string
Config key $value
mixed
Config value
void
public function __set($key, $value)
{
$this->$key = $value;
$this->_is_renew = false;
return $this;
}