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


PHP Daemon::parseTime方法代碼示例

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


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

示例1: init

 public function init()
 {
     Daemon::addDefaultSettings(array('mod' . $this->modname . 'listen' => 'tcp://0.0.0.0', 'mod' . $this->modname . 'listen-port' => 80, 'mod' . $this->modname . 'log-events' => 0, 'mod' . $this->modname . 'log-queue' => 0, 'mod' . $this->modname . 'send-file' => 0, 'mod' . $this->modname . 'send-file-dir' => '/dev/shm', 'mod' . $this->modname . 'send-file-prefix' => 'http-', 'mod' . $this->modname . 'send-file-onlybycommand' => 0, 'mod' . $this->modname . 'keepalive' => '0s', 'mod' . $this->modname . 'enable' => 0));
     Daemon::$parsedSettings['mod' . $this->modname . 'keepalive'] = Daemon::parseTime(Daemon::$settings['mod' . $this->modname . 'keepalive']);
     if (Daemon::$settings['mod' . $this->modname . 'enable']) {
         Daemon::log(__CLASS__ . ' up.');
         $this->bindSockets(Daemon::$settings['mod' . $this->modname . 'listen'], Daemon::$settings['mod' . $this->modname . 'listenport']);
     }
 }
開發者ID:svcorp77,項目名稱:phpdaemon,代碼行數:9,代碼來源:HTTP.php

示例2: init

 public function init()
 {
     Daemon::addDefaultSettings(array('mod' . $this->modname . 'listen' => 'tcp://127.0.0.1,unix:/tmp/phpdaemon.fcgi.sock', 'mod' . $this->modname . 'listen-port' => 9000, 'mod' . $this->modname . 'allowed-clients' => '127.0.0.1', 'mod' . $this->modname . 'log-records' => 0, 'mod' . $this->modname . 'log-records-miss' => 0, 'mod' . $this->modname . 'log-events' => 0, 'mod' . $this->modname . 'log-queue' => 0, 'mod' . $this->modname . 'send-file' => 0, 'mod' . $this->modname . 'send-file-dir' => '/dev/shm', 'mod' . $this->modname . 'send-file-prefix' => 'fcgi-', 'mod' . $this->modname . 'send-file-onlybycommand' => 0, 'mod' . $this->modname . 'keepalive' => '0s', 'mod' . $this->modname . 'enable' => 0));
     Daemon::$parsedSettings['mod' . $this->modname . 'keepalive'] = Daemon::parseTime(Daemon::$settings['mod' . $this->modname . 'keepalive']);
     if (Daemon::$settings['mod' . $this->modname . 'enable']) {
         Daemon::log(__CLASS__ . ' up.');
         $this->allowedClients = explode(',', Daemon::$settings['mod' . $this->modname . 'allowedclients']);
         $this->bindSockets(Daemon::$settings['mod' . $this->modname . 'listen'], Daemon::$settings['mod' . $this->modname . 'listenport']);
     }
 }
開發者ID:svcorp77,項目名稱:phpdaemon,代碼行數:10,代碼來源:FastCGI.php

示例3: loadSettings

 public static function loadSettings($settings)
 {
     $error = FALSE;
     static $ktr = array('-' => '');
     foreach ($settings as $k => $v) {
         $k = strtolower(strtr($k, $ktr));
         if ($k === 'config') {
             $k = 'configfile';
         }
         if ($k === 'user' || $k === 'group') {
             if ($v === '') {
                 $v = NULL;
             }
         }
         if (array_key_exists($k, Daemon::$settings)) {
             if ($k === 'maxmemoryusage') {
                 Daemon::$parsedSettings[$k] = Daemon::parseSize($v);
             } elseif ($k === 'maxrequests') {
                 Daemon::$parsedSettings[$k] = Daemon::parseNum($v);
             } elseif ($k === 'autogc') {
                 Daemon::$parsedSettings[$k] = Daemon::parseNum($v);
             } elseif ($k === 'maxidle') {
                 Daemon::$parsedSettings[$k] = Daemon::parseTime($v);
             } elseif ($k === 'autoreload') {
                 Daemon::$parsedSettings[$k] = Daemon::parseTime($v);
             } elseif ($k === 'maxconcurrentrequestsperworker') {
                 Daemon::$parsedSettings[$k] = Daemon::parseNum($v);
             } elseif ($k === 'keepalive') {
                 Daemon::$parsedSettings[$k] = Daemon::parseTime($v);
             } elseif ($k === 'mpmdelay') {
                 Daemon::$parsedSettings[$k] = Daemon::parseTime($v);
             } elseif ($k === 'chunksize') {
                 Daemon::$parsedSettings[$k] = Daemon::parseSize($v);
             }
             if (is_int(Daemon::$settings[$k])) {
                 Daemon::$settings[$k] = (int) $v;
             } else {
                 Daemon::$settings[$k] = $v;
             }
         } elseif (strpos($k, 'mod') === 0) {
             Daemon::$settings[$k] = $v;
         } else {
             Daemon::log('Unrecognized parameter \'' . $k . '\'');
             $error = TRUE;
         }
     }
     if (isset($settings['path'])) {
         if (isset(Daemon::$settings['chroot'])) {
             Daemon::$pathReal = realpath(Daemon::$settings['chroot'] . (substr(Daemon::$settings['chroot'], -1) != '/' ? '/' : '') . Daemon::$settings['path']);
         } else {
             Daemon::$pathReal = realpath(Daemon::$settings['path']);
         }
     }
     return !$error;
 }
開發者ID:svcorp77,項目名稱:phpdaemon,代碼行數:55,代碼來源:Daemon.class.php


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