コード例 #1
0
ファイル: Manager.php プロジェクト: Goucher/shopware
 /**
  * @param   $charset
  * @return  Enlight_Template_Manager
  */
 public function setCharset($charset = null)
 {
     if ($charset !== null) {
         self::$_CHARSET = $charset;
     }
     mb_internal_encoding(self::$_CHARSET);
     return $this;
 }