类 EventList
事件列表
命名空间: Cake\Event
属性摘要
-
$_events protected
arrayCake\Event\EventInterface<object>>
事件列表
方法摘要
-
add() public
在启用事件列表时,将事件添加到列表中。
-
count() public
统计对象中的元素
-
flush() public
清空已分派的事件列表。
-
hasEvent() public
检查事件是否在列表中。
-
offsetExists() public
是否有一个偏移量存在
-
offsetGet() public
要检索的偏移量
-
offsetSet() public
要设置的偏移量
-
offsetUnset() public
要取消设置的偏移量
方法详细信息
add() ¶ public
add(Cake\Event\EventInterface<object> $event): void
在启用事件列表时,将事件添加到列表中。
参数
-
Cake\Event\EventInterface<object>
$event 要添加到已分派事件列表中的事件。
返回值
void
count() ¶ public
count(): int
统计对象中的元素
返回值
int
链接
https://secure.php.net/manual/en/countable.count.php
offsetExists() ¶ public
offsetExists(mixed $offset): bool
是否有一个偏移量存在
参数
-
mixed
$offset 要检查的偏移量。
返回值
bool
链接
https://secure.php.net/manual/en/arrayaccess.offsetexists.php
offsetGet() ¶ public
offsetGet(mixed $offset): Cake\Event\EventInterface<object>|null
要检索的偏移量
参数
-
mixed
$offset 要检索的偏移量。
返回值
Cake\Event\EventInterface<object>|null
链接
https://secure.php.net/manual/en/arrayaccess.offsetget.php
offsetSet() ¶ public
offsetSet(mixed $offset, mixed $value): void
要设置的偏移量
参数
-
mixed
$offset 要将值分配到的偏移量。
-
mixed
$value 要设置的值。
返回值
void
链接
https://secure.php.net/manual/en/arrayaccess.offsetset.php
offsetUnset() ¶ public
offsetUnset(mixed $offset): void
要取消设置的偏移量
参数
-
mixed
$offset 要取消设置的偏移量。
返回值
void
链接
https://secure.php.net/manual/en/arrayaccess.offsetunset.php