码迷,mamicode.com
首页 > 其他好文 > 详细

转换字符串编码

时间:2015-07-03 17:24:44      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

做文章采集的时候,遇到了不同网站的字符编码不同的问题,于是写了一个简单的字符转换函数

 

<?php
/*
转换字符串编码
*/
function convert($str, $from = ‘utf-8‘, $to = ‘gb2312‘) {
if(!$str) return false;
if(!is_string($str))return false;
$from = strtolower($from);
$to = strtolower($to);
$from = str_replace(‘gbk‘, ‘gb2312‘, $from);
$to = str_replace(‘gbk‘, ‘gb2312‘, $to);
$from = str_replace(‘utf8‘, ‘utf-8‘, $from);
$to = str_replace(‘utf8‘, ‘utf-8‘, $to);
if($from == $to) return $str;
$tmp = array();
if(function_exists(‘iconv‘)) {
return iconv($from, $to."//IGNORE", $str);
} else if(function_exists(‘mb_convert_encoding‘)) {
return mb_convert_encoding($str, $to, $from);
} else {
return false;
}
}
?>

转换字符串编码

标签:

原文地址:http://www.cnblogs.com/personalnote/p/4619192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!