php 检测字符编码mb_detect_encoding()函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-06 15:12:29 浏览: 评论:0
文章提供这款mb_detect_encoding函数是一款可以检测你使用的字符串是什么编码,然后返回字符串编码字符,下面是一个简单应用实例.
- function asciitog($brand)
- {
- $cha=mb_detect_encoding($brand);
- if($cha=='utf-8')
- {
- $brand2 = iconv($cha,"gb2312",$brand);
- }
- $cha2=mb_detect_encoding($brand2);
- if($cha2!='ascii'){
- $brand=$brand2;
- }
- return $brand; //开源代码phpfensi.com
- }
mb_detect_encoding
语法:string mb_detect_encoding ( string $str [, mixed $encoding_list = mb_detect_order() [, bool $strict = false ]] )
说明:mb_detect_encoding 用来检测字符串所使用编码,并返回相对应编码字符串.
Tags: mb_detect_encoding 字符编码
相关文章
- ·php mb_detect_encoding判断字符串编码方法(2014-06-16)
- ·php中mb_detect_encoding检测文件编码方法(2014-06-30)
- ·详解PHP中的mb_detect_encoding函数使用方法(2021-06-16)
- ·PHP iconv()函数字符编码转换的问题讲解(2021-11-13)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)