時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
本篇文章是對php獲取字符串的編碼格式的方法(函數(shù))進行了詳細的分析介紹,需要的朋友參考下
如果不清楚字符串的編碼格式的話,就可以將這段字符這樣檢查:
$encode = mb_detect_encoding($string, array("ASCII",'UTF-8′,"GB2312′,"GBK",'BIG5′));
echo $encode;
這樣就能知道它是什么編碼的了。后續(xù)操作還可以為其轉(zhuǎn)碼:
if ($encode == "UTF-8″){
$string = iconv("UTF-8″,"GBK",$string);
}
$type=mb_detect_encoding($title, array("ASCII","UTF-8","GB2312","GBK","BIG5"));
if($type=="UTF-8"){
$title = iconv('utf-8','gbk//IGNORE',$title);
}
關(guān)鍵詞標簽:php
相關(guān)閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具
人氣排行 詳解ucenter原理及第三方應用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實例(PHP采集)