会员登录 | 会员注册 | 意见建议 | 网站地图

站长资源综合门户

当前位置:首页 > 站长学院 > 编程程序 > PHP脚本来写Daemon程序

PHP脚本来写Daemon程序

时间:2012-03-26 19:52:07   作者:   来源:   点击:
'config.php' ){  
  •     global $init_md5;  
  •  
  •     if( $signal || md5_file( $filename ) != $init_md5 ){  
  •         print "The config file has been changed, we are going to restart. n";  
  •         $pid = pcntl_fork();  
  •         if( $pid == -1 ){  
  •             print "Fork error n";  
  •         }else if( $pid > 0 ){  
  •             print "Parent exit n";  
  •             exit(0);  
  •         }else{  
  •             $init_md5 = md5_file( $filename );  
  •             print "Child continue to run n";  
  •         }  
  •     }  
  • }
  • 分享到:

    网友评论

    热门编程程序