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