Multi-Threading
Posted by wagnert 3 years ago
Provide multi-threading functionality like Joe Watkins pthreads extension or on a function based approach that allows a userland based thread class implementation (gives PHP developers more control).
You can write some example code:
```php
$thread = new class extends Thread {
public function run() {
echo "Hello World\n";
}
};
$thread->start() && $thread->join();
```