| 
 | apc_existsChecks if APC key exists Description
   mixed apc_exists
    ( mixed  $keys)Checks if one or more APC keys exist. Parameters
 Return Values
   Returns  ExamplesExample #1 apc_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
 |