Skip to content

Instantly share code, notes, and snippets.

View hdvianna's full-sized avatar
🎯
Focusing

hdvianna hdvianna

🎯
Focusing
View GitHub Profile
@etheriqa
etheriqa / Worker.php
Last active August 9, 2023 08:40
Parallel processing on PHP using stream_select()
<?php
interface Worker
{
public function getCommand();
public function done($stdout, $stderr);
public function fail($stdout, $stderr, $status);
}