コード例 #1
0
ファイル: LogAction.php プロジェクト: drehere/shenmegui
 /**
  * @brief 设置Log数据
  *
  * @param array(key=>value)
  * @return 失败false, 成功array()
  * @author cuichao02 
  * @date 2011/02/21
  **/
 public static function setLogNotice($arrValue)
 {
     if (parent::__setDict(parent::LOG_NOTICE, $arrValue) === true) {
         Saf_Base_Log::addLogNotice($arrValue);
         return parent::__getDict(parent::LOG_NOTICE);
     } else {
         Saf_SmartMain::setSafLog("设置log字典数据报错(" . var_export($arrValue, true) . ")", 1);
         return false;
     }
 }
コード例 #2
0
ファイル: SmartMain.php プロジェクト: Alan110/phpEnv
 public static function saveLogNotice()
 {
     if (!self::$arrCommonAction['log']) {
         //被裁剪
         return true;
     }
     Saf_Base_Hook::saveLogHook();
     $arrArgs = Saf_SmartMain::getLogNotice();
     if ($arrArgs === false) {
         return false;
     }
     Saf_Base_Log::addLogNotice($arrArgs);
 }