主頁 > 知識(shí)庫 > php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作

php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作

熱門標(biāo)簽:江西手機(jī)自動(dòng)外呼防封系統(tǒng)是什么 高德地圖標(biāo)注家 怎么向銷售公司推銷外呼系統(tǒng) 哪里辦理400電話 外呼系統(tǒng)撥打暫時(shí)無法接通 長春人工外呼系統(tǒng)服務(wù)商 廣州防封卡外呼系統(tǒng)多少錢一個(gè)月 廣東地市地圖標(biāo)注 仁和怎么申請400開頭的電話

本文實(shí)例講述了php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作。分享給大家供大家參考,具體如下:

前提要安裝有pcntl擴(kuò)展,可通過php -m查看是否安裝

?php
class Daemon {
  private $pidfile;
  function __construct() {
    $this->pidfile = dirname(__FILE__).'/daemontest.pid';
  }
  private function startDeamon() {
    if (file_exists($this->pidfile)) {
      echo "The file $this->pidfile exists.\n";
      exit();
    }
    $pid = pcntl_fork();
    if ($pid == -1) {
      die('could not fork');
    } else if ($pid) {
      echo 'start ok';
      exit($pid);
    } else {
    // we are the child
      file_put_contents($this->pidfile, getmypid());
      return getmypid();
    }
  }
  private function start(){
    $pid = $this->startDeamon();
    while (true) {
      file_put_contents(dirname(__FILE__).'/test.txt', date('Y-m-d H:i:s'), FILE_APPEND);
      sleep(2);
    }
  }
  private function stop(){
    if (file_exists($this->pidfile)) {
      $pid = file_get_contents($this->pidfile);
      posix_kill($pid, 9);
      unlink($this->pidfile);
    }
  }
  public function run($argv) {
    if($argv[1] == 'start') {
      $this->start();
    }else if($argv[1] == 'stop') {
      $this->stop();
    }else{
      echo 'param error';
    }
  }
}
$deamon = new Daemon();
$deamon->run($argv);

啟動(dòng)

php deamon.php start

關(guān)閉

php deamon.php stop

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP進(jìn)程與線程操作技巧總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語法入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • php守護(hù)進(jìn)程 加linux命令nohup實(shí)現(xiàn)任務(wù)每秒執(zhí)行一次
  • PHP高級(jí)編程實(shí)例:編寫守護(hù)進(jìn)程
  • shell腳本作為保證PHP腳本不掛掉的守護(hù)進(jìn)程實(shí)例分享
  • 如何寫php守護(hù)進(jìn)程(Daemon)
  • PHP將進(jìn)程作為守護(hù)進(jìn)程的方法
  • PHP擴(kuò)展程序?qū)崿F(xiàn)守護(hù)進(jìn)程
  • PHP實(shí)現(xiàn)多進(jìn)程并行操作的詳解(可做守護(hù)進(jìn)程)
  • PHP守護(hù)進(jìn)程的兩種常見實(shí)現(xiàn)方式詳解
  • PHP程序員玩轉(zhuǎn)Linux系列 使用supervisor實(shí)現(xiàn)守護(hù)進(jìn)程
  • PHP程序級(jí)守護(hù)進(jìn)程的實(shí)現(xiàn)與優(yōu)化的使用概述
  • php腳本守護(hù)進(jìn)程原理與實(shí)現(xiàn)方法詳解
  • PHP守護(hù)進(jìn)程化在C和PHP環(huán)境下的實(shí)現(xiàn)

標(biāo)簽:廈門 湘西 濮陽 文山 梅河口 黔東 海北 惠州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作》,本文關(guān)鍵詞  php,實(shí)現(xiàn),簡單,的,守護(hù),進(jìn)程,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作》相關(guān)的同類信息!
  • 本頁收集關(guān)于php實(shí)現(xiàn)簡單的守護(hù)進(jìn)程創(chuàng)建、開啟與關(guān)閉操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章