ptaskPHP 的协程扩展

联合创作 · 2023-10-01 09:41

ptask 是 PHP 的协程扩展。

使用这个扩展,使得 PHP 可以像 Python 和 Lua 一样使用协程。

安装:

$ git clone https://github.com/liexusong/ptask
$ cd ptask/libtask
$ make
$ sudo make install
$ cd ../ext
$ phpize
$ ./configure --with-php-config=path-to-php-config
$ make
$ sudo make install

 修改php.ini,添加extension=ptask.so。

使用:

<?php

function handler($arg)
{
    for ($i = 0; $i < 1000; $i++) {
        echo $arg, ": ", $i, "\n";
        ptask_yield();
    }
}


ptask_create("handler", "handler1");
ptask_create("handler", "handler2");

ptask_run();
浏览 8
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报