当前位置: 首页>>代码示例>>PHP>>正文


PHP tsmConfig::getExecutionTime方法代码示例

本文整理汇总了PHP中tsmConfig::getExecutionTime方法的典型用法代码示例。如果您正苦于以下问题:PHP tsmConfig::getExecutionTime方法的具体用法?PHP tsmConfig::getExecutionTime怎么用?PHP tsmConfig::getExecutionTime使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tsmConfig的用法示例。


在下文中一共展示了tsmConfig::getExecutionTime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct()
 {
     $this->_app = JFactory::getApplication();
     $this->_db = JFactory::getDBO();
     $this->_oldToNew = new stdClass();
     $this->starttime = microtime(true);
     $max_execution_time = tsmConfig::getExecutionTime();
     $jrmax_execution_time = vRequest::getInt('max_execution_time');
     if (!empty($jrmax_execution_time)) {
         // 			vmdebug('$jrmax_execution_time',$jrmax_execution_time);
         if ($max_execution_time != $jrmax_execution_time) {
             @ini_set('max_execution_time', $jrmax_execution_time);
         }
     } else {
         if ($max_execution_time < 60) {
             @ini_set('max_execution_time', 60);
         }
     }
     $this->maxScriptTime = tsmConfig::getExecutionTime() * 0.95 - 3;
     //Lets use 3 seconds of the execution time as reserve to store the progress
     $jrmemory_limit = vRequest::getInt('memory_limit');
     if (!empty($jrmemory_limit)) {
         @ini_set('memory_limit', $jrmemory_limit . 'M');
     } else {
         tsmConfig::ensureMemoryLimit(128);
     }
     $this->maxMemoryLimit = $this->return_bytes(ini_get('memory_limit')) - 14 * 1024 * 1024;
     //Lets use 11MB for joomla
     // 		vmdebug('$this->maxMemoryLimit',$this->maxMemoryLimit); //134217728
     //$this->maxMemoryLimit = $this -> return_bytes('20M');
     // 		ini_set('memory_limit','35M');
     $q = 'SELECT `id` FROM `#__tsmart_migration_oldtonew_ids` ';
     $this->_db->setQuery($q);
     $res = $this->_db->loadResult();
     if (empty($res)) {
         $q = 'INSERT INTO `#__tsmart_migration_oldtonew_ids` (`id`) VALUES ("1")';
         $this->_db->setQuery($q);
         $this->_db->execute();
         $this->_app->enqueueMessage('Start with a new migration process and setup log maxScriptTime ' . $this->maxScriptTime . ' maxMemoryLimit ' . $this->maxMemoryLimit / (1024 * 1024));
     } else {
         $this->_app->enqueueMessage('Found prior migration process, resume migration maxScriptTime ' . $this->maxScriptTime . ' maxMemoryLimit ' . $this->maxMemoryLimit / (1024 * 1024));
     }
     $this->_keepOldProductIds = tsmConfig::get('keepOldProductIds', FALSE);
 }
开发者ID:cuongnd,项目名称:etravelservice,代码行数:44,代码来源:migrator.php

示例2: __construct

 public function __construct()
 {
     $this->_app = JFactory::getApplication();
     $this->_db = JFactory::getDBO();
     // 		$this->_oldToNew = new stdClass();
     $this->starttime = microtime(true);
     $max_execution_time = tsmConfig::getExecutionTime();
     $jrmax_execution_time = vRequest::getInt('max_execution_time', 300);
     if (!empty($jrmax_execution_time)) {
         // 			vmdebug('$jrmax_execution_time',$jrmax_execution_time);
         if ($max_execution_time !== $jrmax_execution_time) {
             @ini_set('max_execution_time', $jrmax_execution_time);
         }
     }
     $this->maxScriptTime = tsmConfig::getExecutionTime() * 0.9 - 1;
     //Lets use 10% of the execution time as reserve to store the progress
     tsmConfig::ensureMemoryLimit(128);
     $this->maxMemoryLimit = $this->return_bytes(ini_get('memory_limit')) * 0.85;
     $config = JFactory::getConfig();
     $this->_prefix = $config->get('dbprefix');
     $this->reCreaPri = tsmConfig::get('reCreaPri', 0);
     $this->reCreaKey = tsmConfig::get('reCreaKey', 1);
 }
开发者ID:cuongnd,项目名称:etravelservice,代码行数:23,代码来源:tableupdater.php


注:本文中的tsmConfig::getExecutionTime方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。