您好,欢迎访问一九零五行业门户网

CI框架源码翻阅-Utf8.php

ci框架源码阅读---------utf8.php
文件地址:./system/core/utf8.php
主要作用:提供utf-8编码的环境支持
1.__construct() 构造函数确定utf8是否被支持
(1)日志记录 utf8 class initialized
(2)将codeigniter.php中的$cfg调用进当前类。
(3)判断如果正则表达式支持utf8,iconv库已经安装,多字节字符串函数重载没有启用,应用程序字  符集是utf8,那么
(a)记录日志:utf-8 support enabled。
(b)定义常量utf8_enabled 值为 true
(c)如果加载了mbstring扩展我们设置内部编码
(d)我们会设置一个标记让我们不用多次使用extension_loaded() 函数
(4)判断如果正则表达式不支持utf8或者iconv库没有安装或者多字节字符串函数重载已经启用或者应用程序字符集不是utf8,那么
(a)记录日志:utf-8 support disabled
(b)设置常量utf8_enabled 为false
2.clean_string()  清理utf8编码的字符串
(1)判断如果字符串不是ascii码
(2)使用iconv函数将字符串转码(关于iconv函数详情见http://www.php.net/manual/zh/function.iconv.php)
(3)返回字符串
3.safe_ascii_for_xml() 删除所有在xml中可能导致问题的ascii码字符,除了水平制表符,换行,回车。
(1) 直接调用remove_invisible_characters()来删除无效的字符并返回。
注:remove_invisible_characters 函数在common.php中定义
4.convert_to_utf8() 将字符串转换为utf8编码
(1)如果iconv函数存在,使用iconv转换
(2)如果mb_convert_encoding函数存在,使用mb_convert_encoding函数转换
(3)如果上面两个函数都不存在则不能转换返回false
(4)如果转换完成返回转换后的字符串
5._is_ascii()  测试一个字符串是不是ascii码
(1) 使用正则拼配返回测试结果。
item('charset') == 'utf-8' // application charset must be utf-8 ) { log_message('debug', utf-8 support enabled); define('utf8_enabled', true); // set internal 内部 encoding for multibyte 多字节 string functions if necessary 必需的 // and set a flag so we don't have to repeatedly 多次 use extension_loaded() // or function_exists() if (extension_loaded('mbstring')) { define('mb_enabled', true); mb_internal_encoding('utf-8'); } else { define('mb_enabled', false); } } else { log_message('debug', utf-8 support disabled); define('utf8_enabled', false); } } // -------------------------------- /** * clean utf-8 strings * * ensures 保证 strings are utf-8 * * @access public * @param string * @return string */ function clean_string($str) { if ($this->_is_ascii($str) === false) { $str = @iconv('utf-8', 'utf-8//ignore', $str); } return $str; } // -------------------------------- /** * remove ascii control characters * * removes all ascii control characters except horizontal tabs, * line feeds, and carriage returns, as all others can cause * problems in xml * * @access public * @param string * @return string */ function safe_ascii_for_xml($str) { return remove_invisible_characters($str, false); } // -------------------------------- /** * convert to utf-8 * * attempts 企图 to convert a string to utf-8 * * @access public * @param string * @param string - input encoding * @return string */ function convert_to_utf8($str, $encoding) { if (function_exists('iconv')) { $str = @iconv($encoding, 'utf-8', $str); } elseif (function_exists('mb_convert_encoding')) { $str = @mb_convert_encoding($str, 'utf-8', $encoding); } else { return false; } return $str; } // -------------------------------- /** * is ascii? * * tests if a string is standard 7-bit ascii or not * * @access public * @param string * @return bool */ function _is_ascii($str) { return (preg_match('/[^\x00-\x7f]/s', $str) == 0); } // --------------------------------}// end utf8 class/* end of file utf8.php *//* location: ./system/core/utf8.php */
其它类似信息

推荐信息