|
apc_exists(PECL apc >= 3.1.4) apc_exists — Checks if APC key exists Возвращаемые значенияReturns TRUE if the key exists, otherwise FALSE Or if an array was passed to keys, then an array is returned that contains all existing keys, or an empty array if none exist. ПримерыПример #1 apc_exists() example
<?php Результатом выполнения данного примера будет что-то подобное: Foo exists: apple Baz does not exist array(2) { ["foo"]=> bool(true) ["bar"]=> bool(true) } Смотрите также
|
|