You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
11
vendor/swoole/examples/coroutine/fread.php
vendored
Executable file
11
vendor/swoole/examples/coroutine/fread.php
vendored
Executable file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
use Swoole\Coroutine as co;
|
||||
|
||||
$fp = fopen(__DIR__ . "/defer_client.php", "r");
|
||||
|
||||
co::create(function () use ($fp)
|
||||
{
|
||||
fseek($fp, 256);
|
||||
$r = co::fread($fp);
|
||||
var_dump($r);
|
||||
});
|
Reference in New Issue
Block a user