| 
 | wincache_ucache_deleteDeletes variables from the user cache Description
   bool wincache_ucache_delete
    ( mixed  $key)
   Deletes the elements in the user cache pointed by  Parameters
 
 Return Values
   Returns  
   If  Examples
 Example #1 Using wincache_ucache_delete with  
<?phpThe above example will output: bool(true) bool(false) 
 Example #2 Usingwincache_ucache_delete with  
<?phpThe above example will output: 
array(4) { [0]=> string(5) "green" 
           [1]=> string(4) "Blue" 
           [2]=> string(6) "yellow" 
           [3]=> string(4) "cyan" } 
 Example #3 Using wincache_ucache_delete with  
<?phpThe above example will output: 
array(2) { [0]=> string(6) "yellow" 
           [1]=> string(4) "cyan" }
See Also
 
 |