原文地址:http://www.codefans.net/articles/1272.shtmlphp
php自動識別編碼,若裏面有中文的話,將其轉換爲UTF-8就最好了,由於中文在Gbk編輯狀況狀況下,有可能會亂碼,這個和客戶端和服務端編碼都有關係,爲了不亂碼,咱們可使用下面的函數將其自動轉換爲UTF8國際標準編碼:html
01 |
<?php |
02 |
function characet( $data ){ |
03 |
if ( ! empty ( $data ) ){ |
04 |
$fileType = mb_detect_encoding( $data , array ( 'UTF-8' , 'GBK' , 'LATIN1' , 'BIG5' )) ; |
05 |
if ( $fileType != 'UTF-8' ){ |
06 |
$data = mb_convert_encoding( $data , 'utf-8' , $fileType ); |
07 |
} |
08 |
} |
09 |
return $data ; |
10 |
} |
11 |
?> |