[quote="台灣阿堂"
]這是phpbbx里的功能,還是你自己另外再加上去的? [/quote]
自己加上去的~
我昰覺得自己加上去還改的蠻OK的
只是有些語法真的看不懂
突然看到\r
一個昰 imagecreatefromgif
一個昰 imagecreatefromjpeg
都有imagecreatefrom <~這個昰什麼東西
[問題]論壇狀態簽名(ok)
版主: 版主管理群
論壇狀態簽名錯誤訊息變成
Fatal error: Call to undefined function: iconv() in d:\appserv\www\phpbbx\signature.php on line 11
Fatal error: Call to undefined function: iconv() in d:\appserv\www\phpbbx\signature.php on line 11
代碼: 選擇全部
function big52uni($text) {
$rtext="";
$max=strlen($text);
for($i=0;$i<$max;$i++){
$h=ord($text[$i]);
if($h>=150 && $i<$max-1){
第11行 $rtext.="&#".base_convert(bin2hex(iconv("big5","ucs-2",
substr($text,$i,2))),16,10).";";
$i++;
}else{
$rtext.=$text[$i];
}
}
return $rtext;
}


