对象化接口
Counter::__construct
"counter" 扩展 - 一个连续的实例
PHP Manual
Counter 类
简介
表示一个独立的计数器对象。
类摘要
Counter
{
__construct
(
string
$name
[,
integer
$initial_value
[,
integer
$flags
]] )
integer
getValue
(
void
)
void
bumpValue
(
integer
$offset
)
void
resetValue
(
void
)
mixed
getMeta
(
integer
$attribute
)
static
Counter
getNamed
(
string
$name
)
static
void
setCounterClass
(
string
$name
)
}
Table of Contents
Counter::__construct
— 创建一个包含单一数值的计数器实例。
Counter::getValue
— 获取计数器的当前值。
Counter::bumpValue
— 修改计数器的当前值。
Counter::resetValue
— 重置计数器的当前值。
Counter::getMeta
— 返回计数器的部分元信息。
Counter::getNamed
— 取回一个名称已存在的计数器。
Counter::setCounterClass
— 设置由 Counter::getNamed 返回的计数器类。
对象化接口
Counter::__construct
"counter" 扩展 - 一个连续的实例
PHP Manual