总有人间一两风,填我十万八千梦

PHP Fiber 用法 手册 | 示例代码

PHP开发手册 归档 331℃ 0评论

纤程(Fiber)类

(PHP 8 >= 8.1.0)

简介

纤程(Fiber)代表了有完整栈、可中断的功能。Fiber 可以从调用堆栈中的任何位置挂起,在 fiber 内暂停执行,直到稍后恢复 fiber。

类摘要

final class Fiber {
/* 方法 */
public __construct(callable $callback)
public start(mixed ...$args): mixed
public resume(mixed $value = null): mixed
public throw(Throwable $exception): mixed
public getReturn(): mixed
public isStarted(): bool
public isSuspended(): bool
public isRunning(): bool
public isTerminated(): bool
public static suspend(mixed $value = null): mixed
public static getCurrent(): ?Fiber

}

参见

纤程概述

目录

用户贡献的笔记

There are no user contributed notes for this page.

转载请注明:悠然品鉴 » PHP Fiber 用法 手册 | 示例代码

喜欢 (0)or分享 (0)
发表我的评论
取消评论

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址