2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Specialized String Functions for phpMyAdmin
6 * Copyright 2002 Robin Johnson <robbat2@users.sourceforge.net>
7 * http://www.orbis-terrarum.net/?l=people.robbat2
9 * Defines a set of function callbacks that have a pure C version available if
10 * the "ctype" extension is available, but otherwise have PHP versions to use
13 * The SQL Parser code relies heavily on these functions.
16 * @uses PMA_PHP_INT_VERSION
18 * @uses extension_loaded()
20 * @uses function_exists()
21 * @uses mb_internal_encoding()
23 * @todo a .lib filename should not have code in main(), split or rename file
25 if (! defined('PHPMYADMIN')) {
29 /* Try to load mbstring, unless we're using buggy php version */
30 if (PMA_PHP_INT_VERSION
!= 40203) {
31 if (!@extension_loaded
('mbstring')) {
37 * windows-* and tis-620 are not supported and are not multibyte,
38 * others can be ignored as they're not multibyte
40 * @global boolean $GLOBALS['using_mb_charset']
42 $GLOBALS['using_mb_charset'] =
43 substr($GLOBALS['charset'], 0, 8) != 'windows-' &&
44 substr($GLOBALS['charset'], 0, 9) != 'iso-8859-' &&
45 substr($GLOBALS['charset'], 0, 3) != 'cp-' &&
46 $GLOBALS['charset'] != 'koi8-r' &&
47 $GLOBALS['charset'] != 'tis-620';
49 $GLOBALS['PMA_allow_mbstr'] = @function_exists
('mb_strlen') && $GLOBALS['using_mb_charset'];
51 if ($GLOBALS['PMA_allow_mbstr']) {
52 // the hebrew lang file uses iso-8859-8-i, encoded RTL,
53 // but mb_internal_encoding only supports iso-8859-8
54 if ($GLOBALS['charset'] == 'iso-8859-8-i'){
55 mb_internal_encoding('iso-8859-8');
57 mb_internal_encoding($GLOBALS['charset']);
61 // This is for handling input better
62 if (defined('PMA_MULTIBYTE_ENCODING') ||
$GLOBALS['PMA_allow_mbstr']) {
63 $GLOBALS['PMA_strpos'] = 'mb_strpos';
64 require './libraries/string_mb.lib.php';
66 $GLOBALS['PMA_strpos'] = 'strpos';
67 require './libraries/string_native.lib.php';
70 if (!@extension_loaded
('ctype')) {
74 if (@extension_loaded
('ctype')) {
75 require './libraries/string_type_ctype.lib.php';
77 require './libraries/string_type_native.lib.php';
81 * This checks if a string actually exists inside another string
82 * We try to do it in a PHP3-portable way.
83 * We don't care about the position it is in.
86 * @param string string to search for
87 * @param string string to search in
88 * @return boolean whether the needle is in the haystack or not
89 * @todo rename PMA_STR_inStr()
91 function PMA_STR_strInStr($needle, $haystack)
93 // PMA_STR_pos($haystack, $needle) !== false
94 // return (is_integer(PMA_STR_pos($haystack, $needle)));
95 return (bool) PMA_STR_pos(' ' . $haystack, $needle);
96 } // end of the "PMA_STR_strInStr()" function
99 * Checks if a given character position in the string is escaped or not
105 * @param string string to check for
106 * @param integer the character to check for
107 * @param integer starting position in the string
108 * @return boolean whether the character is escaped or not
110 function PMA_STR_charIsEscaped($string, $pos, $start = 0)
112 $pos = max(intval($pos), 0);
113 $start = max(intval($start), 0);
114 $len = PMA_strlen($string);
116 // Check for string length or invalid input or special case of input
118 if ($pos <= $start ||
$len <= max($pos, $start)) {
124 while ($pos >= $start && PMA_substr($string, $pos, 1) == '\\') {
125 $escaped = !$escaped;
130 } // end of the "PMA_STR_charIsEscaped()" function
134 * Checks if a number is in a range
136 * @param integer number to check for
137 * @param integer lower bound
138 * @param integer upper bound
139 * @return boolean whether the number is in the range or not
141 function PMA_STR_numberInRangeInclusive($num, $lower, $upper)
143 return ($num >= $lower && $num <= $upper);
144 } // end of the "PMA_STR_numberInRangeInclusive()" function
148 * Checks if a character is an accented character
150 * Presently this only works for some character sets. More work may be needed
153 * @uses PMA_STR_numberInRangeInclusive()
155 * @param string character to check for
156 * @return boolean whether the character is an accented one or not
158 function PMA_STR_isAccented($c)
160 $ord_min1 = 192; //ord('A');
161 $ord_max1 = 214; //ord('Z');
162 $ord_min2 = 216; //ord('A');
163 $ord_max2 = 246; //ord('Z');
164 $ord_min3 = 248; //ord('A');
165 $ord_max3 = 255; //ord('Z');
169 return PMA_STR_numberInRangeInclusive($ord_c, $ord_min1, $ord_max1)
170 ||
PMA_STR_numberInRangeInclusive($ord_c, $ord_min2, $ord_max2)
171 ||
PMA_STR_numberInRangeInclusive($ord_c, $ord_min2, $ord_max2);
172 } // end of the "PMA_STR_isAccented()" function
176 * Checks if a character is an SQL identifier
178 * @uses PMA_STR_isAlnum()
179 * @uses PMA_STR_isAccented()
180 * @param string character to check for
181 * @param boolean whether the dot character is valid or not
182 * @return boolean whether the character is an SQL identifier or not
184 function PMA_STR_isSqlIdentifier($c, $dot_is_valid = false)
186 return (PMA_STR_isAlnum($c)
187 ||
PMA_STR_isAccented($c)
190 ||
($dot_is_valid != false && $c == '.'));
191 } // end of the "PMA_STR_isSqlIdentifier()" function
195 * Binary search of a value in a sorted array
197 * $arr MUST be sorted, due to binary search
199 * @param string string to search for
200 * @param array sorted array to search into
201 * @param integer size of sorted array to search into
203 * @return boolean whether the string has been found or not
205 function PMA_STR_binarySearchInArr($str, $arr, $arrsize)
211 while ($top >= $bottom && $found == false) {
212 $mid = intval(($top +
$bottom) / 2);
213 $res = strcmp($str, $arr[$mid]);
216 } elseif ($res < 0) {
224 } // end of the "PMA_STR_binarySearchInArr()" function