DpxfCronAction.class.php 264 B

1234567891011121314151617181920
  1. <?php
  2. class DpxfCronAction extends Action {
  3. public function restart_workerman( ){
  4. if(PHP_SAPI != 'cli'){
  5. exit('please use cli run');
  6. }
  7. $cwd = getcwd();
  8. $cmd = 'cd ' .$cwd.' && php index.php start -d dpxf_index/index';
  9. exec($cmd);
  10. }
  11. }