123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Utf8 {
-
- public function __construct()
- {
- if (
- defined('PREG_BAD_UTF8_ERROR')
- && (ICONV_ENABLED === TRUE OR MB_ENABLED === TRUE)
- && strtoupper(config_item('charset')) === 'UTF-8'
- )
- {
- define('UTF8_ENABLED', TRUE);
- log_message('debug', 'UTF-8 Support Enabled');
- }
- else
- {
- define('UTF8_ENABLED', FALSE);
- log_message('debug', 'UTF-8 Support Disabled');
- }
- log_message('info', 'Utf8 Class Initialized');
- }
-
-
- public function clean_string($str)
- {
- if ($this->is_ascii($str) === FALSE)
- {
- if (MB_ENABLED)
- {
- $str = mb_convert_encoding($str, 'UTF-8', 'UTF-8');
- }
- elseif (ICONV_ENABLED)
- {
- $str = @iconv('UTF-8', 'UTF-8//IGNORE', $str);
- }
- }
- return $str;
- }
-
-
- public function safe_ascii_for_xml($str)
- {
- return remove_invisible_characters($str, FALSE);
- }
-
-
- public function convert_to_utf8($str, $encoding)
- {
- if (MB_ENABLED)
- {
- return mb_convert_encoding($str, 'UTF-8', $encoding);
- }
- elseif (ICONV_ENABLED)
- {
- return @iconv($encoding, 'UTF-8', $str);
- }
- return FALSE;
- }
-
-
- public function is_ascii($str)
- {
- return (preg_match('/[^\x00-\x7F]/S', $str) === 0);
- }
- }
|