translationutf8.class.php
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 28 行
PHP
28 行
<?/** * File translationutf8.class.php * * @package Translation */
/** * require base class */require_once 'Translation'.DIRECTORY_SEPARATOR.'translation.class.php';/** * class that allows using Translation class with UTF-8 DB encoding * @package Translation */class TTranslationUTF8 extends Translation{ function TTranslationUTF8($PageName, $LanguageID, $pear_DSN, $CustomTables = 0) { $this->Translation($PageName, $LanguageID, $pear_DSN, $CustomTables); } function gstr($StringName, $Params = array()) { return utf8_decode(parent::gstr($StringName, $Params)); }}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?