| 123456789101112131415161718192021222324 | <?php/** * run with command  * php start.php start */use Workerman\Worker;// composer 的 autoload 文件include __DIR__ . '/vendor/autoload.php';if(strpos(strtolower(PHP_OS), 'win') === 0){    exit("start.php not support windows, please use start_for_win.bat\n");}// 标记是全局启动define('GLOBAL_START', 1);// 加载IO 和 Webrequire_once __DIR__ . '/start_io.php';require_once __DIR__ . '/start_web.php';// 运行所有服务Worker::runAll();
 |