downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

wincache_ucache_get> <wincache_ucache_delete
[edit] Last updated: Fri, 30 Nov 2012

view this page in

wincache_ucache_exists

(PECL wincache >= 1.1.0)

wincache_ucache_exists Checks if a variable exists in the user cache

Opis

bool wincache_ucache_exists ( string $key )

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

Parametry

key

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

Zwracane wartości

Returns TRUE if variable with the key exitsts, otherwise returns FALSE.

Przykłady

Przykład #1 Using wincache_ucache_exists()

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

Powyższy przykład wyświetli:

bool(true)

Zobacz też:



add a note add a note User Contributed Notes wincache_ucache_exists - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites