[李景山php]每天TP5-20170122|thinkphp5-Process.php-4

來源:互聯網
上載者:User

標籤:thinkphp

/** * 擷取PID * @return int|null * @throws \RuntimeException */public function getPid(){// 擷取進程 ID    if ($this->isSigchildEnabled()) {        throw new \RuntimeException(‘This PHP has been compiled with --enable-sigchild. The process identifier can not be retrieved.‘);    }// 如果是單獨的子進程  直接提示 運行時 異常    $this->updateStatus(false);// 更新狀態 為 false    return $this->isRunning() ? $this->processInformation[‘pid‘] : null;// 進行 Running ,就返回 啟動並執行 ID}/** * 將一個 POSIX 訊號發送到進程中 * @param int $signal * @return Process */public function signal($signal){// 將一個 POSIX 訊號發送到進程中    $this->doSignal($signal, true);//  發送 POSIX訊號    return $this;}/** * 禁用從底層過程擷取輸出和錯誤輸出。 * @return Process */public function disableOutput(){// 禁用 從底層過程 擷取輸出和錯誤輸出    if ($this->isRunning()) {// 如果進行中        throw new \RuntimeException(‘Disabling output while the process is running is not possible.‘);    }    if (null !== $this->idleTimeout) {// 如果 時間輸出 不為空白        throw new \LogicException(‘Output can not be disabled while an idle timeout is set.‘);    }    $this->outputDisabled = true;// 輸出 失敗    return $this;}


本文出自 “專註php 群號:414194301” 部落格,請務必保留此出處http://jingshanls.blog.51cto.com/3357095/1885348

[李景山php]每天TP5-20170122|thinkphp5-Process.php-4

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.