1、安装文件更新

2、内核更新
This commit is contained in:
2016-07-31 14:17:51 +08:00
parent 9da53fc969
commit 762b280d21
30 changed files with 1082 additions and 181 deletions

View File

@@ -90,12 +90,11 @@ class Xcache
* @access public
* @param string $name 缓存变量名
* @param int $step 步长
* @param int $expire 有效时间 0为永久
* @return false|int
*/
public function inc($name, $step = 1, $expire = null)
public function inc($name, $step = 1)
{
return xcache_inc($name, $step, $expire);
return xcache_inc($name, $step);
}
/**
@@ -103,12 +102,11 @@ class Xcache
* @access public
* @param string $name 缓存变量名
* @param int $step 步长
* @param int $expire 有效时间 0为永久
* @return false|int
*/
public function dec($name, $step = 1, $expire = null)
public function dec($name, $step = 1)
{
return xcache_dec($name, $step, $expire);
return xcache_dec($name, $step);
}
/**