| apcu_existsChecks if entry exists Description
   mixed apcu_exists
    ( mixed  $keys)Checks if one or more APCu entries exist. Parameters
 Return Values
   Returns  ExamplesExample #1 apcu_exists example 
<?phpThe above example will output something similar to: 
Foo exists: apple
Baz does not exist
array(2) {
  ["foo"]=>
  bool(true)
  ["bar"]=>
  bool(true)
}
See Also
 |