PHP8 apcu_exists
(PECL apcu >= 4.0.0)
apcu_exists — 检查条目是否存在
说明
apcu_exists(mixed $keys): mixed
检查是否存在一个或多个 APCu 条目。
参数
keys
包含键的字符串或字符串数组。
返回值
如果键存在则返回 true,否则返回 false 或者如果将数组传递给键,则返回包含所有现有键的数组,如果不存在则返回空数组。
示例
示例 #1 apcu_exists() example
<?php
$fruit = 'apple';
$veggie = 'carrot';
apcu_store('foo', $fruit);
apcu_store('bar', $veggie);
if (apcu_exists('foo')) {
echo "Foo exists: ";
echo apcu_fetch('foo');
} else {
echo "Foo does not exist";
}
echo PHP_EOL;
if (apcu_exists('baz')) {
echo "Baz exists.";
} else {
echo "Baz does not exist";
}
echo PHP_EOL;
$ret = apcu_exists(array('foo', 'donotexist', 'bar'));
var_dump($ret);
?>
以上示例的输出类似于:
Foo exists: apple
Baz does not exist
array(2) {
["foo"]=>
bool(true)
["bar"]=>
bool(true)
}
参见
- apcu_cache_info() - 从 APCu 存储中获取缓存信息
- apcu_fetch() - Fetch a stored variable from the cache