选择语言 :

 Core_Pagination::__set

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
File: ./core/classes/pagination.class.php
public function __set($key, $value)
{
    $this->$key = $value;
    $this->_is_renew = false;

    return $this;
}