1、安裝JPGRAPH及改程序 ?。ǎ保?、安裝:JpGraph PHP5 version Version: 3.0.7,從http://www./jpgraph/jpdownload.php下載最新版本,記得看清對應(yīng)的PHP版本。解壓縮其中子目錄src至mantis\library目錄下,改名為jpgraph ?。ǎ玻?、修改文件mantis\library\jpgraph\jpgraph_ttf.inc.php: elseif( $aFF === FF_SIMSUN ) { // Do Chinese conversion if( $this->g2312 == null ) { include_once 'jpgraph_gb2312.php' ; $this->g2312 = new GB2312toUTF8(); } return $this->g2312->gb2utf8($aTxt); } 改為 elseif( $aFF === FF_SIMSUN ) { // Do Chinese conversion return $aTxt; } 2、后臺設(shè)置: (1)安裝插件:管理--》管理插件--》安裝MantisGraph插件 (2)修改程序: 文件mantis\plugins\MantisGraph\pages\config.php(記得本文件改完后用Ultraedit用ASC-II至UTF-8的轉(zhuǎn)換功能保存為UTF-8格式文件,與總體字符集保持一致): $t_current_font_selected = array( 'simsun' => false, //增加這一行 'arial' => false, //-------------------------------------- Sans-serif:<br /> <label><input type="radio" name="font" value="simsun"<?php echo print_font_checked( 'simsun' )?>/>宋體</label><br /> //增加這一行 <label><input type="radio" name="font" value="arial"<?php echo print_font_checked( 'arial' )?>/>Arial</label><br /> //--------------------------------------------------------------------- 文件mantis\plugins\MantisGraph\pages\config_edit.php: if ( plugin_config_get( 'font' ) != $f_font ) { switch ( $f_font ) { case 'simsun': //增加這一行 case 'arial': //---------------------------------------------------------------------- 文件mantis\plugins\MantisGraph\core\graph_api.php: $t_font_map = array( 'simsun' => FF_SIMSUN, //增加這一行 'arial' => FF_ARIAL, 3、設(shè)置并啟用: (1)、管理--》管理插件--》點擊“MantisGraph 1.0”名字進入設(shè)置界面, (2)、Graph library to use選擇“Jpgraph”,F(xiàn)ont選擇“宋體” (3)、點擊“更改配置”后再看看統(tǒng)計報表中內(nèi)容,是否已如你所愿。 |
|
來自: 不甘平庸的瘋子 > 《技術(shù)知識》