blob: 6ca1a02ca14a0292cb1ed1c48d9ddc6d245d6f2a [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Jones98badc12010-03-02 13:08:02 -06002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jones98badc12010-03-02 13:08:02 -06006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreevc123e112012-01-08 00:17:34 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevc123e112012-01-08 00:17:34 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Jones98badc12010-03-02 13:08:02 -060019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Jones98badc12010-03-02 13:08:02 -060023 * @link http://codeigniter.com
Pascal Kriete5b2d2da2010-11-04 17:23:40 -040024 * @since Version 2.0
Derek Jones98badc12010-03-02 13:08:02 -060025 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Jones98badc12010-03-02 13:08:02 -060028
Derek Jones98badc12010-03-02 13:08:02 -060029/**
Pascal Krieteaaec1e42011-01-20 00:01:21 -050030 * Utf8 Class
Derek Jones98badc12010-03-02 13:08:02 -060031 *
Pascal Krieteaaec1e42011-01-20 00:01:21 -050032 * Provides support for UTF-8 environments
Derek Jones98badc12010-03-02 13:08:02 -060033 *
34 * @package CodeIgniter
35 * @subpackage Libraries
Pascal Krieteaaec1e42011-01-20 00:01:21 -050036 * @category UTF-8
Derek Jonesf4a4bd82011-10-20 12:18:42 -050037 * @author EllisLab Dev Team
Pascal Krieteaaec1e42011-01-20 00:01:21 -050038 * @link http://codeigniter.com/user_guide/libraries/utf8.html
Derek Jones98badc12010-03-02 13:08:02 -060039 */
Pascal Krieteaaec1e42011-01-20 00:01:21 -050040class CI_Utf8 {
Derek Jones98badc12010-03-02 13:08:02 -060041
42 /**
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030043 * Class constructor
Barry Mienydd671972010-10-04 16:33:58 +020044 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030045 * Determines if UTF-8 support is to be enabled.
Andrey Andreev92ebfb62012-05-17 12:49:24 +030046 *
47 * @return void
Derek Jones98badc12010-03-02 13:08:02 -060048 */
Greg Akerd2c4ec62011-12-25 22:52:57 -060049 public function __construct()
Derek Jones98badc12010-03-02 13:08:02 -060050 {
Derek Jones98badc12010-03-02 13:08:02 -060051 if (
Andrey Andreevbe1496d2014-02-11 22:48:45 +020052 defined('PREG_BAD_UTF8_ERROR') // PCRE must support UTF-8
53 && (ICONV_ENABLED === TRUE OR MB_ENABLED === TRUE) // iconv or mbstring must be installed
Andrey Andreeveb555ed2014-02-12 19:25:01 +020054 && strnatcasecmp(config_item('charset'), 'UTF-8') === 0 // Application charset must be UTF-8
Derek Jones98badc12010-03-02 13:08:02 -060055 )
56 {
Derek Jones98badc12010-03-02 13:08:02 -060057 define('UTF8_ENABLED', TRUE);
Andrey Andreevc123e112012-01-08 00:17:34 +020058 log_message('debug', 'UTF-8 Support Enabled');
Derek Jones98badc12010-03-02 13:08:02 -060059 }
60 else
61 {
Derek Jones98badc12010-03-02 13:08:02 -060062 define('UTF8_ENABLED', FALSE);
Andrey Andreevc123e112012-01-08 00:17:34 +020063 log_message('debug', 'UTF-8 Support Disabled');
Barry Mienydd671972010-10-04 16:33:58 +020064 }
Andrey Andreeveb555ed2014-02-12 19:25:01 +020065
66 log_message('debug', 'Utf8 Class Initialized');
Derek Jones98badc12010-03-02 13:08:02 -060067 }
Barry Mienydd671972010-10-04 16:33:58 +020068
Derek Jones98badc12010-03-02 13:08:02 -060069 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +020070
Derek Jones98badc12010-03-02 13:08:02 -060071 /**
72 * Clean UTF-8 strings
73 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030074 * Ensures strings contain only valid UTF-8 characters.
Derek Jones98badc12010-03-02 13:08:02 -060075 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030076 * @uses CI_Utf8::_is_ascii() Decide whether a conversion is needed
77 *
78 * @param string $str String to clean
Derek Jones98badc12010-03-02 13:08:02 -060079 * @return string
80 */
Greg Akerd2c4ec62011-12-25 22:52:57 -060081 public function clean_string($str)
Derek Jones98badc12010-03-02 13:08:02 -060082 {
83 if ($this->_is_ascii($str) === FALSE)
84 {
Andrey Andreevbe1496d2014-02-11 22:48:45 +020085 if (ICONV_ENABLED)
86 {
87 $str = @iconv('UTF-8', 'UTF-8//IGNORE', $str);
88 }
89 elseif (MB_ENABLED)
90 {
91 $str = mb_convert_encoding($str, 'UTF-8', 'UTF-8');
92 }
Derek Jones98badc12010-03-02 13:08:02 -060093 }
Barry Mienydd671972010-10-04 16:33:58 +020094
Derek Jones98badc12010-03-02 13:08:02 -060095 return $str;
96 }
97
98 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +020099
Derek Jones98badc12010-03-02 13:08:02 -0600100 /**
101 * Remove ASCII control characters
102 *
103 * Removes all ASCII control characters except horizontal tabs,
104 * line feeds, and carriage returns, as all others can cause
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300105 * problems in XML.
Barry Mienydd671972010-10-04 16:33:58 +0200106 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300107 * @param string $str String to clean
Derek Jones98badc12010-03-02 13:08:02 -0600108 * @return string
109 */
Greg Akerd2c4ec62011-12-25 22:52:57 -0600110 public function safe_ascii_for_xml($str)
Derek Jones98badc12010-03-02 13:08:02 -0600111 {
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400112 return remove_invisible_characters($str, FALSE);
Derek Jones98badc12010-03-02 13:08:02 -0600113 }
114
115 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200116
Derek Jones98badc12010-03-02 13:08:02 -0600117 /**
118 * Convert to UTF-8
119 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300120 * Attempts to convert a string to UTF-8.
Derek Jones98badc12010-03-02 13:08:02 -0600121 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300122 * @param string $str Input string
123 * @param string $encoding Input encoding
124 * @return string $str encoded in UTF-8 or FALSE on failure
Derek Jones98badc12010-03-02 13:08:02 -0600125 */
Greg Akerd2c4ec62011-12-25 22:52:57 -0600126 public function convert_to_utf8($str, $encoding)
Derek Jones98badc12010-03-02 13:08:02 -0600127 {
Andrey Andreevbe1496d2014-02-11 22:48:45 +0200128 if (ICONV_ENABLED)
Derek Jones98badc12010-03-02 13:08:02 -0600129 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200130 return @iconv($encoding, 'UTF-8', $str);
Derek Jones98badc12010-03-02 13:08:02 -0600131 }
Andrey Andreev9f44c212012-10-10 16:07:17 +0300132 elseif (MB_ENABLED === TRUE)
Derek Jones98badc12010-03-02 13:08:02 -0600133 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200134 return @mb_convert_encoding($str, 'UTF-8', $encoding);
Derek Jones98badc12010-03-02 13:08:02 -0600135 }
Barry Mienydd671972010-10-04 16:33:58 +0200136
Andrey Andreevc123e112012-01-08 00:17:34 +0200137 return FALSE;
Derek Jones98badc12010-03-02 13:08:02 -0600138 }
139
140 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200141
Derek Jones98badc12010-03-02 13:08:02 -0600142 /**
143 * Is ASCII?
144 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300145 * Tests if a string is standard 7-bit ASCII or not.
Derek Jones98badc12010-03-02 13:08:02 -0600146 *
Andrey Andreev3e9d2b82012-10-27 14:28:51 +0300147 * @param string $str String to check
Derek Jones98badc12010-03-02 13:08:02 -0600148 * @return bool
149 */
Greg Akerd2c4ec62011-12-25 22:52:57 -0600150 protected function _is_ascii($str)
Derek Jones98badc12010-03-02 13:08:02 -0600151 {
Greg Akerd2c4ec62011-12-25 22:52:57 -0600152 return (preg_match('/[^\x00-\x7F]/S', $str) === 0);
Derek Jones98badc12010-03-02 13:08:02 -0600153 }
154
Derek Jones98badc12010-03-02 13:08:02 -0600155}
Derek Jones98badc12010-03-02 13:08:02 -0600156
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500157/* End of file Utf8.php */
Timothy Warren40403d22012-04-19 16:38:50 -0400158/* Location: ./system/core/Utf8.php */