// 加载所有Applications/*/start.php,以便启动所有服务 foreach (glob(__DIR__ .'/Application/*/start*.php') as $start_file) { require_once $start_file; } 加载出所有启动服务 /** * This file is part of workerman. * * Licensed un...