1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * run with command
- * php start.php start
- */
- ini_set('display_errors', 'on');
- use Workerman\Worker;
- if(strpos(strtolower(PHP_OS), 'win') === 0)
- {
- exit("start.php not support windows, please use start_for_win.bat\n");
- }
- // 检查扩展
- if(!extension_loaded('pcntl'))
- {
- exit("Please install pcntl extension. See http://doc3.workerman.net/appendices/install-extension.html\n");
- }
- if(!extension_loaded('posix'))
- {
- exit("Please install posix extension. See http://doc3.workerman.net/appendices/install-extension.html\n");
- }
- // 标记是全局启动
- define('GLOBAL_START', 1);
- require_once __DIR__ . '/vendor/autoload.php';
- // 加载所有Applications/*/start.php,以便启动所有服务
- require_once __DIR__.'/applications/chat/start_businessworker.php';
- require_once __DIR__.'/applications/chat/start_gateway.php';
- require_once __DIR__.'/applications/chat/start_register.php';
- /*define('APP_PATH', __DIR__.'/application/');
- require __DIR__.'/thinkphp/base.php';*/
- // 运行所有服务
- Worker::runAll();
|