fiber_task.php

PHP마스터

탐색기

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP
초급10
중급10
고급10
전문가5
마스터5
di_container.php
trait_use.php
generator_read.php
attribute_route.php
fiber_task.php
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
fiber_task.php
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
13
class Task {
   private Fiber $fiber;
   public function __construct(callable $fn) {
       $this->fiber = new Fiber($fn);
   }
   public function run(): mixed {
       return $this->fiber->isStarted()
           ? $this->fiber->resume()
           : $this->fiber->start();
   }
}
0WPM0%0:000/282(0%)|Ln 1, Col 1
UTF-8PHP

관련 연습 문제