PHP预定义接口:生成器
2019-09-07 阅读 : 次
(No version information available, might only be in Git)
简介
Generator 对象是从 generators返回的.
CautionGenerator 对象不能通过 new 实例化.
类摘要
Generator implements Iterator { /* 方法 */ public current ( void ) : mixed public key ( void ) : mixed public next ( void ) : void public rewind ( void ) : void public send ( mixed$value
) : mixed public throw ( Exception $exception
) : void public valid ( void ) : bool public __wakeup ( void ) : void } Table of Contents
- Generator::current — 返回当前产生的值
- Generator::key — 返回当前产生的键
- Generator::next — 生成器继续执行
- Generator::rewind — 重置迭代器
- Generator::send — 向生成器中传入一个值
- Generator::throw — 向生成器中抛入一个异常
- Generator::valid — 检查迭代器是否被关闭
- Generator::__wakeup — 序列化回调
本文地址:https://www.helloaliyun.com/tutorial/341.html