work 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/env php
  2. <?php
  3. ini_set('memory_limit',-1);
  4. use think\App;
  5. use Workerman\Worker as WO;
  6. define('APP_PATH', __DIR__ . '/application/');
  7. bcscale(2);
  8. // 加载框架引导文件
  9. require __DIR__.'/thinkphp/base.php';
  10. App::initCommon();
  11. WO::$logFile=sprintf('%s/workerman.log',RUNTIME_PATH);
  12. WO::$pidFile=sprintf('%s/workerman.pid',RUNTIME_PATH);
  13. WO::$processTitle='beauti-no';
  14. abstract class Com{
  15. protected static function log($data){
  16. user_log('commands/'.class_basename(get_called_class()),$data);
  17. }
  18. protected static function logError(\Exception $exception){
  19. user_log('commands/'.class_basename(get_called_class()),[
  20. 'exception'=>$exception->getMessage(),
  21. 'file'=>$exception->getFile().' line:'.$exception->getLine(),
  22. 'trace'=>$exception->getTrace()
  23. ]);
  24. }
  25. protected static function newWorker(){
  26. $work=new WO();
  27. $work->name=class_basename(static::class);
  28. return $work;
  29. }
  30. }
  31. foreach (glob(__DIR__.'/commands/*.php') as $file){
  32. require $file;
  33. }
  34. //require __DIR__.'/commands/bug_report.php';
  35. WO::runAll();