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_CAS(3)							 1						    WINCACHE_UCACHE_CAS(3)

wincache_ucache_cas - Compares the variable with old value and assigns new value to it

SYNOPSIS
bool wincache_ucache_cas (string $key, int $old_value, int $new_value) DESCRIPTION
Compares the variable associated with the $key with $old_value and if it matches then assigns the $new_value to it. PARAMETERS
o $key - The $key that is used to store the variable in the cache. $key is case sensitive. o $old_value - Old value of the variable pointed by $key in the user cache. The value should be of type long, otherwise the function returns FALSE. o $new_value - New value which will get assigned to variable pointer by $key if a match is found. The value should be of type long, otherwise the function returns FALSE. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Using wincache_ucache_cas(3) <?php wincache_ucache_set('counter', 2922); var_dump(wincache_ucache_cas('counter', 2922, 1)); var_dump(wincache_ucache_get('counter')); ?> The above example will output: bool(true) int(1) SEE ALSO
wincache_ucache_inc(3), wincache_ucache_dec(3). PHP Documentation Group WINCACHE_UCACHE_CAS(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