apcu_dec

(PECL apcu >= 4.0.0)

apcu_dec减少存储的数字

描述

apcu_dec(
    string $key,
    int $step = 1,
    bool &$success = ?,
    int $ttl = 0
): int|false

减少存储的整数的值。

参数

key

要减少的值的键。

step

步长,或要减少的值。

success

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

ttl

如果操作插入新值(而不是减少现有值),则要使用的 TTL。

返回值

如果成功,则返回 key 值的当前值,如果失败,则返回 false

示例

示例 #1 apcu_dec() 示例

<?php
echo "让我们做一些与成功有关的事情", PHP_EOL;

apcu_store('anumber', 42);

echo
apcu_fetch('anumber'), PHP_EOL;

echo
apcu_dec('anumber'), PHP_EOL;
echo
apcu_dec('anumber', 10), PHP_EOL;
echo
apcu_dec('anumber', 10, $success), PHP_EOL;

var_dump($success);

echo
"现在,让我们失败", PHP_EOL, PHP_EOL;

apcu_store('astring', 'foo');

$ret = apcu_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)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top