若發現排名出現亂碼, 只須在 plugins/nkflash.php 內
尋找
$others = preg_replace("/\"/is", "\"",$others);
在此行 ($others ...)之上加入
require_once './include/chinese.class.php';
$chs = new Chinese('BIG5', 'UTF8');
在此行 ($others ...)之下加入
$others = $chs->Convert($others);
便會 ok.
Enjoy... |