CakeFest 2024: The Official CakePHP Conference

wincache_ucache_exists

(PECL wincache >= 1.1.0)

wincache_ucache_exists Checks if a variable exists in the user cache

Açıklama

wincache_ucache_exists(string $key): bool

Checks if a variable with the key exists in the user cache or not.

Bağımsız Değişkenler

key

The key that was used to store the variable in the cache. key is case sensitive.

Dönen Değerler

Returns true if variable with the key exitsts, otherwise returns false.

Örnekler

Örnek 1 Using wincache_ucache_exists()

<?php
if (!wincache_ucache_exists('green'))
wincache_ucache_set('green', 1);
var_dump(wincache_ucache_exists('green'));
?>

Yukarıdaki örneğin çıktısı:

bool(true)

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top