當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Main::log_write方法代碼示例

本文整理匯總了PHP中Main::log_write方法的典型用法代碼示例。如果您正苦於以下問題:PHP Main::log_write方法的具體用法?PHP Main::log_write怎麽用?PHP Main::log_write使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Main的用法示例。


在下文中一共展示了Main::log_write方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 public function run($task)
 {
     $cmd = $task["cmd"];
     $status = 0;
     exec($cmd, $output, $status);
     Main::log_write($cmd . ",已執行.status:" . $status);
     exit($status);
 }
開發者ID:jymsy,項目名稱:swoole-crontab,代碼行數:8,代碼來源:Cmd.class.php

示例2: __construct

 public function __construct($file)
 {
     if (empty($file) || !empty($file) && !file_exists($file)) {
         Main::log_write("指定配置文件不存在,file:" . $file);
         exit;
     }
     $this->filePath = $file;
 }
開發者ID:noikiy,項目名稱:swoole-crontab,代碼行數:8,代碼來源:LoadTasksByFile.class.php

示例3: getDbConfig

 protected function getDbConfig()
 {
     $config = (include ROOT_PATH . "config/config.php");
     if (empty($config) || !isset($config["mysql"])) {
         Main::log_write("mysql config not found");
         exit;
     }
     return $config["mysql"];
 }
開發者ID:noikiy,項目名稱:swoole-crontab,代碼行數:9,代碼來源:LoadTasksByMysql.class.php

示例4: autoload

 /**
  * 子進程 自動載入需要運行的工作類
  * @param $class
  */
 public function autoload($class)
 {
     include ROOT_PATH . "plugin" . DS . "PluginBase.class.php";
     $file = ROOT_PATH . "plugin" . DS . $class . ".class.php";
     if (file_exists($file)) {
         include $file;
     } else {
         Main::log_write("處理類不存在");
     }
 }
開發者ID:royalwang,項目名稱:swoole-crontab,代碼行數:14,代碼來源:Process.class.php

示例5: autoload

 /**
  * 子進程 自動載入需要運行的工作類
  * @param $class
  */
 public function autoload($class)
 {
     include ROOT_PATH . "worker/WorkerBase.class.php";
     $file = ROOT_PATH . "worker/" . $class . "Worker" . ".class.php";
     if (file_exists($file)) {
         include $file;
     } else {
         Main::log_write("處理類不存在");
     }
 }
開發者ID:noikiy,項目名稱:swoole-crontab,代碼行數:14,代碼來源:Worker.class.php

示例6: run

 public function run($task)
 {
     $client = new GearmanClient();
     $client->addServers($task["server"]);
     $client->doBackground($task["cmd"], $task["ext"]);
     if (($code = $client->returnCode()) != GEARMAN_SUCCESS) {
         Main::log_write("Gearman:" . $task["cmd"] . " to " . $task["server"] . " error,code=" . $code);
         exit;
     }
     Main::log_write("Gearman:" . $task["cmd"] . " to " . $task["server"] . " success,code=" . $code);
     exit;
 }
開發者ID:royalwang,項目名稱:swoole-crontab,代碼行數:12,代碼來源:Gearman.class.php

示例7: content

 public function content($config)
 {
     if (!isset($config["host"]) || !isset($config["port"]) || !isset($config["timeout"]) || !isset($config["queue"])) {
         Main::log_write(vsprintf(" host=%s,port=%s,timeout=%s,queue=%s", $config));
         exit;
     }
     $this->Redis = new Redis();
     if (!$this->Redis->pconnect($config["host"], $config["port"], isset($config["timeout"]))) {
         Main::log_write(vsprintf("redis can't connect.host=%s,port=%s,timeout=%s", $config));
         exit;
     }
     if (isset($config["db"]) && is_numeric($config["db"])) {
         $this->Redis->select($config["db"]);
     }
     $this->queue = $config["queue"];
 }
開發者ID:liumingzhij26,項目名稱:swoole-crontab,代碼行數:16,代碼來源:WorkerBase.class.php

示例8: params_s

 /**
  * 解析啟動模式參數
  * @param $opt
  */
 public static function params_s($opt)
 {
     //判斷傳入了s參數但是值,則提示錯誤
     if (isset($opt["s"]) && !$opt["s"] || isset($opt["s"]) && !in_array($opt["s"], array("start", "stop", "restart"))) {
         Main::log_write("Please run: path/to/php main.php -s [start|stop|restart]");
     }
     if (isset($opt["s"]) && in_array($opt["s"], array("start", "stop", "restart"))) {
         switch ($opt["s"]) {
             case "start":
                 Crontab::start();
                 break;
             case "stop":
                 Crontab::stop();
                 break;
             case "restart":
                 Crontab::restart();
                 break;
         }
     }
 }
開發者ID:noikiy,項目名稱:swoole-crontab,代碼行數:24,代碼來源:main.php

示例9: register_signal

 /**
  * 注冊信號
  */
 private static function register_signal()
 {
     swoole_process::signal(SIGTERM, function ($signo) {
         self::exit2p("收到退出信號,退出主進程");
     });
     swoole_process::signal(SIGCHLD, function ($signo) {
         while ($ret = swoole_process::wait(false)) {
             $pid = $ret['pid'];
             if (isset(self::$task_list[$pid])) {
                 $task = self::$task_list[$pid];
                 if ($task["type"] == "crontab") {
                     $end = microtime(true);
                     $start = $task["start"];
                     $id = $task["id"];
                     Main::log_write("{$id} [Runtime:" . sprintf("%0.6f", $end - $start) . "]");
                     $task["process"]->close();
                     //關閉進程
                     unset(self::$task_list[$pid]);
                     if (isset(self::$unique_list[$id]) && self::$unique_list[$id] > 0) {
                         self::$unique_list[$id]--;
                     }
                 }
                 if ($task["type"] == "worker") {
                     $end = microtime(true);
                     $start = $task["start"];
                     $classname = $task["classname"];
                     Main::log_write("{$classname}_{$task["number"]} [Runtime:" . sprintf("%0.6f", $end - $start) . "]");
                     $task["process"]->close();
                     //關閉進程
                     (new Worker())->create_process($classname, $task["number"], $task["redis"]);
                 }
             }
         }
     });
     swoole_process::signal(SIGUSR1, function ($signo) {
         //TODO something
     });
 }
開發者ID:meimingmm,項目名稱:swoole-crontab,代碼行數:41,代碼來源:Crontab.class.php

示例10: register_signal

 /**
  * 注冊信號
  */
 private static function register_signal()
 {
     swoole_process::signal(SIGTERM, function ($signo) {
         if (!empty(Main::$http_server)) {
             swoole_process::kill(Main::$http_server->pid, SIGKILL);
         }
         self::exit2p("收到退出信號,退出主進程");
     });
     swoole_process::signal(SIGCHLD, function ($signo) {
         while (($pid = pcntl_wait($status, WNOHANG)) > 0) {
             $task = self::$task_list[$pid];
             $end = microtime(true);
             $start = $task["start"];
             $id = $task["id"];
             Main::log_write("{$id} [Runtime:" . sprintf("%0.6f", $end - $start) . "]");
             unset(self::$task_list[$pid]);
             if (isset(self::$unique_list[$id]) && self::$unique_list[$id] > 0) {
                 self::$unique_list[$id]--;
             }
         }
     });
     swoole_process::signal(SIGUSR1, function ($signo) {
         LoadConfig::reload_config();
     });
 }
開發者ID:royalwang,項目名稱:swoole-crontab,代碼行數:28,代碼來源:Crontab.class.php

示例11: http_run

 /**
  * 運行httpserver
  * @param $worker
  */
 public function http_run($worker)
 {
     Main::log_write("HTTP Server 已啟動");
     $binpath = $_SERVER["_"];
     $worker->exec($binpath, array(ROOT_PATH . "/http.php", $worker->pipe, Crontab::$config_file, self::$host, self::$port));
 }
開發者ID:liumingzhij26,項目名稱:swoole-crontab,代碼行數:10,代碼來源:main.php

示例12: exit2p

 /**
  * 退出主進程
  * @param $msg
  */
 public static function exit2p($msg)
 {
     @unlink(self::$pid_file);
     Main::log_write($msg . "\n");
     exit;
 }
開發者ID:stonegithubs,項目名稱:squire,代碼行數:10,代碼來源:Squire_Master.class.php


注:本文中的Main::log_write方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。