• Closure::__construct

    (PHP 5 >= 5.3.0, PHP 7) Closure::__construct — 用于禁止实例化的构造函数

    1078

  • Closure::bind

    (PHP 5 >= 5.4.0, PHP 7) Closure::bind — 复制一个闭包,绑定指定的$this对象和类作用域。

    1325

  • Closure::bindTo

    (PHP 5 >= 5.4.0, PHP 7) Closure::bindTo — 复制当前闭包对象,绑定指定的$this对象和类作用域。

    1412

  • 生成器类

    Generator 是从 generators返回的. Caution Generator 对象不能通过 new 实例化.

    1336

  • Generator::current

    (PHP 5 >= 5.5.0, PHP 7) Generator::current — 返回当前产生的值

    1042

  • Generator::key

    (PHP 5 >= 5.5.0, PHP 7) Generator::key — 返回当前产生的键

    866

  • Generator::next

    (PHP 5 >= 5.5.0, PHP 7) Generator::next — 生成器继续执行

    845

  • Generator::rewind

    (PHP 5 >= 5.5.0, PHP 7) Generator::rewind — 重置迭代器

    895

  • Generator::send

    (PHP 5 >= 5.5.0, PHP 7) Generator::send — 向生成器中传入一个值

    999

  • Generator::throw

    (PHP 5 >= 5.5.0, PHP 7) Generator::throw — 向生成器中抛入一个异常

    746

  • Generator::valid

    (PHP 5 >= 5.5.0, PHP 7) Generator::valid — 检查迭代器是否被关闭

    709

  • 上下文选项和参数,Context

    PHP 提供了多种上下文选项和参数,可用于所有的文件系统或数据流封装协议。上下文(Context)由 stream_context_create() 创建。选项可通过 stream_context_s...

    1715

Popular Entries