Example #1
0
 /**
  * 设置输出类型及模板,如果是'ajax'或者'json',则以ajax,json输出.
  * 如果$outType = '*.tpl',则用smarty模板输出
  * @param string $outType 
  */
 public function setOutType($outType)
 {
     if (!$outType) {
         throw new LogicException('$outType不得为空');
     }
     if ($outType == 'json' || $outType == 'ajax' || $outType == 'smarty') {
         self::$outType = $outType;
         return true;
     }
     throw new LogicException('$outType参数错误');
 }