apc_define_constants
apc_define_constants
(PECL apc >= 3.0.0)
apc_define_constants - 为检索和批量定义定义一组常量
描述
bool apc_define_constants ( string $key , array $constants [, bool $case_sensitive = true ] )
define()非常慢。由于APC的主要好处是提高脚本/应用程序的性能,因此提供此机制以简化质量常数定义的过程。但是,这个功能表现不如预期。
要获得更好的解决方案,请尝试使用PECL 的»hidef扩展。
注意
:要移除一组存储的常量(不清除整个缓存),可以将一个空数组作为constants
参数传递,从而有效地清除存储的值。
参数
key
在key
作为常量集的名称被存储。这key
用于检索apc_load_constants()中存储的常量。
constants
一个constant_name =>值对的关联数组。该CONSTANT_NAME必须遵循正常的恒定的命名规则。值必须评估为标量值。
case_sensitive
常量的默认行为是声明区分大小写的; 即CONSTANT
和Constant
表示不同的值。如果此参数评估为FALSE
常量,则将声明为不区分大小写的符号。
返回值
成功时返回TRUE
或失败时返回FALSE
。
示例
Example #1 apc
_
define
_
constants() example
<?php
$constants = array(
'ONE' => 1,
'TWO' => 2,
'THREE' => 3,
apc_define_constants('numbers', $constants
echo ONE, TWO, THREE;
?>
上面的例子将输出:
123
也可以看看
- apc_load_constants() - 从缓存中加载一组常量
- define() - 定义一个命名常量
- constant() - 返回一个常量的值
- 或者PHP常量引用
← apc_dec
apc_delete_file →