• php结合linux 执行通道关闭重启


    <?php
    if( $_SERVER['REMOTE_ADDR']!='' ) DIE;
    $curFile = __FILE__;
    $ROOT = dirname($curFile);
    include $ROOT."/config.cron.php";
    $caefile=CACHE."/channel.cae.php";

    $exp = explode('case/',$curFile);
    $runFile = $exp[1];

    exec("ps xau | grep cron_send | grep -v grep | awk '{print $12"__"$2}'",$row);
    foreach($row as $file)
    {
        $file = trim($file);
        list($file,$kid) = explode('__',$file);
        if($file)
        {
            $exp = explode('case/',$file);
            $files[$exp[1]]=$kid;
        }
    }

    $cjfile = $ROOT.'/jc.php';
    echo $cjfile.'=======';
    $cFiles = file($cjfile);
    unlink($cjfile);
    foreach( $cFiles as $kf )
    {
        $kf = trim($kf);
        list($f,$s) = explode('__',$kf);
        $exp = explode('case/',$f);
        if( $s=='1' && $f )//重启
        {
            
            echo $exec = "nohup /usr/local/php5/bin/php {$f} > /opt/null &";
            system($exec);
        }
        else if( $s=='0' )    //关闭
        {
               $kid = $files[$exp[1]];
                echo $exec = "kill $kid";
                exec($exec);
        }
    }

    if( $files[$runFile]>1 )
    {
        die('已经运行中,当前无法启动....');
    }
    ?>

  • 相关阅读:
    PHPLIB Template入门系列 4 模板嵌套
    jQuery 实例
    建立PHP的本地调试环境
    PHP缓存memcache简单应用
    PHP程序:虚拟域名服务DIY
    去掉网络共享的session
    C# 里EF 对Mysql DB更新,乱码
    sshd的log的位置
    cURL 访问https失败
    Eclipse中编辑properties文件的编码问题
  • 原文地址:https://www.cnblogs.com/cwl168/p/3795372.html
Copyright © 2020-2023  润新知