在线文档教程
PHP

apc_dec

apc_dec

(PECL apc >= 3.1.1)

apc_dec - 减少存储的数字

描述

int apc_dec ( string $key [, int $step = 1 [, bool &$success ]] )

减少一个存储的整数值。

参数

key

价值的关键在减少。

step

该步骤或降低的值。

success

(可选)将成功或失败布尔值传递给此引用变量。

返回值

成功时返回key的当前值或失败时返回FALSE

示例

Example #1 apc_dec() example

<?php echo "Let's do something with success", PHP_EOL; apc_store('anumber', 42 echo apc_fetch('anumber'), PHP_EOL; echo apc_dec('anumber'), PHP_EOL; echo apc_dec('anumber', 10), PHP_EOL; echo apc_dec('anumber', 10, $success), PHP_EOL; var_dump($success echo "Now, let's fail", PHP_EOL, PHP_EOL; apc_store('astring', 'foo' $ret = apc_dec('astring', 1, $fail var_dump($ret var_dump($fail ?>

上面的例子会输出类似于:

Let's do something with success 42 41 31 21 bool(true) Now, let's fail bool(false) bool(false)

也可以看看

  • apc_inc() - Increase a stored number

← apc_compile_file

apc_define_constants →