欢迎来到福编程网,本站提供各种互联网专业知识!

PHP命令行执行整合pathinfo模拟定时任务实例

发布时间:2016-08-12 作者:投稿jingxian 来源:转载
下面小编就为大家带来一篇PHP命令行执行整合pathinfo模拟定时任务实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

命令行模式下,根据传参,调用不同控制器。控制器中根据配置定时执行指定方法

Application.php

代码
  1. <?php
  2. class Application{
  3. public static function main(){
  4. header("content-type:text/html;charset=utf-8");
  5. self::register();
  6. self::commandLine();
  7. self::pathInfo();
  8. }
  9. //自动加载
  10. public static function loadClass($class){
  11. $class=str_replace('', '/', $class);
  12. $dir=str_replace('', '/', __DIR__);
  13. $class=$dir."/".$class.".php";
  14. require_once $class;
  15. }
  16. //命令行下
  17. public static function commandLine(){
  18. if(php_sapi_name()=="cli"){
  19. $_SERVER['PATH_INFO']="";
  20. foreach ($_SERVER['argv'] as $k=>$v) {
  21. if($k==0) continue;
  22. $_SERVER['PATH_INFO'].="/".$v;
  23. }
  24. }
  25. }
  26. //pathinfo处理
  27. public static function pathInfo(){
  28. if(isset($_SERVER['PATH_INFO'])){
  29. $pathinfo=array_filter(explode("/", $_SERVER['PATH_INFO']));
  30. for($i=1;$i<=count($pathinfo);$i++){
  31. $key=isset($pathinfo[$i]) ? $pathinfo[$i] : '';
  32. $value=isset($pathinfo[$i+1]) ? $pathinfo[$i+1] :"";
  33. switch ($i) {
  34. case 1:
  35. $_GET['m']=ucfirst($key);
  36. break;
  37. case 2:
  38. $_GET['c']=ucfirst($key);
  39. break;
  40. case 3:
  41. $_GET['a']=$key;
  42. break;
  43. default:
  44. if($i>3){
  45. if($i%2==0){
  46. $_GET[$key]=$value;
  47. }
  48. }
  49. break;
  50. }
  51. }
  52. }
  53. $_GET['m']=!empty($_GET['m']) ? ucfirst($_GET['m']) : 'Index';
  54. $_GET['c']=!empty($_GET['c']) ? ucfirst($_GET['c']) : 'Index';
  55. $_GET['a']=!empty($_GET['a']) ? $_GET['a'] : 'index';
  56. $class="Controller{$_GET['m']}{$_GET['c']}";
  57. $controller=new $class;
  58. $controller->$_GET['a']();
  59. }
  60. //致命错误回调
  61. public static function shutdownCallback(){
  62. $e=error_get_last();
  63. if(!$e) return;
  64. self::errorHandler($e['type'],'Fatal Error '.$e['message'],$e['file'],$e['line']);
  65. }
  66. //错误处理
  67. protected static function myErrorHandler($errno,$errstr,$errfile,$errline){
  68. list($micseconds,$seconds)=explode(" ",microtime());
  69. $micseconds=round($micseconds*1000);
  70. $micseconds=strlen($micseconds)==1 ? '0'.$micseconds : $micseconds;
  71. if(php_sapi_name()=="cli"){
  72. $break="rn";
  73. }else{
  74. $break="

    ";

  75. }
  76. $mes="[".date("Y-m-d H:i:s",$seconds).":{$micseconds}] ".$errfile." ".$errline." line ".$errstr.$break;
  77. echo $mes;
  78. }
  79. //注册
  80. public static function register(){
  81. error_reporting(0);
  82. set_error_handler(function($errno,$errstr,$errfile,$errline){
  83. self::myErrorHandler($errno,$errstr,$errfile,$errline);
  84. });
  85. register_shutdown_function(function(){
  86. self::shutdownCallback();
  87. });
  88. spl_autoload_register("self::loadClass");
  89. }
  90. }
  91. Application::main();

ControllerClientCron.php

代码
  1. <?php
  2. namespace ControllerClient;
  3. class Cron{
  4. private $second=0;
  5. private $tasks=array(
  6. array("duration"=>5,"method"=>"doSomething"),
  7. array("duration"=>2,"method"=>"doSomething2"),
  8. );
  9. public function index(){
  10. while (true) {
  11. sleep(1);
  12. $this->second++;
  13. foreach($this->tasks as $task){
  14. if($this->second%$task['duration']==0){
  15. $this->$task['method']();
  16. }
  17. }
  18. }
  19. }
  20. public function doSomething(){
  21. echo "[".date("Y-m-d H:i:s",time())."] doSomething1 ok!rn";
  22. }
  23. public function doSomething2(){
  24. echo "[".date("Y-m-d H:i:s",time())."] doSomething2 ok!rn";
  25. }
  26. }

效果:

方法doSomething每隔2秒执行一次

方法doSomething2每隔5秒执行一次

现在执行其他方法是同步的,可以再优化成开新线程执行这些方法,就不会阻塞主线程的定时了

以上这篇PHP命令行执行整合pathinfo模拟定时任务实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持全福编程网。

相关推荐

返回顶部