Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wincache_ucache_exists(3) [php man page]

WINCACHE_UCACHE_EXISTS(3)						 1						 WINCACHE_UCACHE_EXISTS(3)

wincache_ucache_exists - Checks if a variable exists in the user cache

SYNOPSIS
bool wincache_ucache_exists (string $key) DESCRIPTION
Checks if a variable with the $key exists in the user cache or not. PARAMETERS
o $key - The $key that was used to store the variable in the cache. $key is case sensitive. RETURN VALUES
Returns TRUE if variable with the $key exitsts, otherwise returns FALSE. EXAMPLES
Example #1 Using wincache_ucache_exists(3) <?php if (!wincache_ucache_exists('green')) wincache_ucache_set('green', 1); var_dump(wincache_ucache_exists('green')); ?> The above example will output: bool(true) SEE ALSO
wincache_ucache_set(3), wincache_ucache_add(3), wincache_ucache_get(3), wincache_ucache_clear(3), wincache_ucache_delete(3), win- cache_ucache_meminfo(3), wincache_ucache_info(3). PHP Documentation Group WINCACHE_UCACHE_EXISTS(3)

Check Out this Related Man Page

WINCACHE_UCACHE_GET(3)							 1						    WINCACHE_UCACHE_GET(3)

wincache_ucache_get - Gets a variable stored in the user cache

SYNOPSIS
mixed wincache_ucache_get (mixed $key, [bool &$success]) DESCRIPTION
Gets a variable stored in the user cache. PARAMETERS
o $key - The $key that was used to store the variable in the cache. $key is case sensitive. $key can be an array of keys. In this case the return value will be an array of values of each element in the $key array. If an object, or an array containing objects, is returned, then the objects will be unserialized. See __wakeup() for details on unserializing objects. o $success - Will be set to TRUE on success and FALSE on failure. RETURN VALUES
If $key is a string, the function returns the value of the variable stored with that key. The $success is set to TRUE on success and to FALSE on failure. The $key is an array, the parameter $success is always set to TRUE. The returned array (name => value pairs) will contain only those name => value pairs for which the get operation in user cache was successful. If none of the keys in the key array finds a match in the user cache an empty array will be returned. EXAMPLES
Example #1 wincache_ucache_get(3) with $key as a string <?php wincache_ucache_add('color', 'blue'); var_dump(wincache_ucache_get('color', $success)); var_dump($success); ?> The above example will output: string(4) "blue" bool(true) Example #2 wincache_ucache_get(3) with $key as an array <?php $array1 = array('green' => '5', 'Blue' => '6', 'yellow' => '7', 'cyan' => '8'); wincache_ucache_set($array1); $array2 = array('green', 'Blue', 'yellow', 'cyan'); var_dump(wincache_ucache_get($array2, $success)); var_dump($success); ?> The above example will output: array(4) { ["green"]=> string(1) "5" ["Blue"]=> string(1) "6" ["yellow"]=> string(1) "7" ["cyan"]=> string(1) "8" } bool(true) SEE ALSO
wincache_ucache_add(3), wincache_ucache_set(3), wincache_ucache_delete(3), wincache_ucache_clear(3), wincache_ucache_exists(3), win- cache_ucache_meminfo(3), wincache_ucache_info(3), __wakeup(). PHP Documentation Group WINCACHE_UCACHE_GET(3)
Man Page

4 More Discussions You Might Find Interesting

1. AIX

System recovery

Hi everyone I'm green AIX user or rather beginner (light green). Unfortunately I have to restore my system + data from scratch (things happen) and make it up and running. I've never done it before. Can someone of you provide me with link/procedure/instruction how to do it? Now I know only:... (3 Replies)
Discussion started by: fraydey
3 Replies

2. Shell Programming and Scripting

Unable to store "-e" in variable ??????

p="-e" echo $p It is not returning the value "-e" stored. Instead returns null. I am wondering how could this happen. Please help me out.I tried all possibilities like p='-e' | p="\-e". Nothing seems to work. :confused::confused: (10 Replies)
Discussion started by: shanneykar
10 Replies

3. UNIX for Dummies Questions & Answers

How to take parameters as non case sensitive

Is there a way for me to take a parameter then store it in a variable and use its value as non case sensitive? Ex. Lets say i have a parameter which contains "Hey". Then im gonna store it to GR using GR=$1. CL=/install/$GR.g How can i make GR non case sensitive so that the... (1 Reply)
Discussion started by: khestoi
1 Replies

4. Shell Programming and Scripting

Daily Checks

Hey Guys, I'm seeking some assistance in getting this script to run as a cron job for the user oracle.. the script is basically to perform 2 ADRCI checks... see the script below... i'm getting the following error: /export/home/oracle/Daily_Checks/ADRCI_Daily_Checks.sh: syntax error at line 16:... (7 Replies)
Discussion started by: Racegod
7 Replies