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.
15 * @uses extension_loaded()
17 * @uses function_exists()
18 * @uses mb_internal_encoding()
20 * @todo a .lib filename should not have code in main(), split or rename file
23 if (! defined('PHPMYADMIN')) {
27 $GLOBALS['PMA_allow_mbstr'] = @function_exists
('mb_strlen');
28 $GLOBALS['PMA_allow_ctype'] = @extension_loaded
('ctype');
30 if ($GLOBALS['PMA_allow_mbstr']) {
31 mb_internal_encoding($GLOBALS['charset']);
35 * Load proper code for handling input.
37 if (defined('PMA_MULTIBYTE_ENCODING') ||
$GLOBALS['PMA_allow_mbstr']) {
38 $GLOBALS['PMA_strpos'] = 'mb_strpos';
39 $GLOBALS['PMA_substr'] = 'mb_substr';
40 require './libraries/string_mb.lib.php';
42 $GLOBALS['PMA_strpos'] = 'strpos';
43 $GLOBALS['PMA_substr'] = 'substr';
44 require './libraries/string_native.lib.php';
50 if ($GLOBALS['PMA_allow_ctype']) {
51 $GLOBALS['PMA_STR_isAlnum'] = 'ctype_alnum';
52 $GLOBALS['PMA_STR_isDigit'] = 'ctype_digit';
53 $GLOBALS['PMA_STR_isSpace'] = 'ctype_space';
54 require './libraries/string_type_ctype.lib.php';
56 $GLOBALS['PMA_STR_isAlnum'] = 'PMA_STR_isAlnum';
57 $GLOBALS['PMA_STR_isDigit'] = 'PMA_STR_isDigit';
58 $GLOBALS['PMA_STR_isSpace'] = 'PMA_STR_isSpace';
59 require './libraries/string_type_native.lib.php';
63 * Checks if a given character position in the string is escaped or not
69 * @param string string to check for
70 * @param integer the character to check for
71 * @param integer starting position in the string
72 * @return boolean whether the character is escaped or not
74 function PMA_STR_charIsEscaped($string, $pos, $start = 0)
76 $pos = max(intval($pos), 0);
77 $start = max(intval($start), 0);
78 $len = PMA_strlen($string);
80 // Check for string length or invalid input or special case of input
82 if ($pos <= $start ||
$len <= max($pos, $start)) {
88 while ($pos >= $start && PMA_substr($string, $pos, 1) == '\\') {
94 } // end of the "PMA_STR_charIsEscaped()" function
98 * Checks if a number is in a range
100 * @param integer number to check for
101 * @param integer lower bound
102 * @param integer upper bound
103 * @return boolean whether the number is in the range or not
105 function PMA_STR_numberInRangeInclusive($num, $lower, $upper)
107 return ($num >= $lower && $num <= $upper);
108 } // end of the "PMA_STR_numberInRangeInclusive()" function
111 * Checks if a character is an SQL identifier
113 * @uses PMA_STR_isAlnum()
114 * @param string character to check for
115 * @param boolean whether the dot character is valid or not
116 * @return boolean whether the character is an SQL identifier or not
118 function PMA_STR_isSqlIdentifier($c, $dot_is_valid = false)
120 return ($GLOBALS['PMA_STR_isAlnum']($c)
121 ||
($ord_c = ord($c)) && $ord_c >= 192 && $ord_c != 215 && $ord_c != 249
124 ||
($dot_is_valid != false && $c == '.'));
125 } // end of the "PMA_STR_isSqlIdentifier()" function
129 * Binary search of a value in a sorted array
131 * $arr MUST be sorted, due to binary search
133 * @param string string to search for
134 * @param array sorted array to search into
135 * @param integer size of sorted array to search into
137 * @return boolean whether the string has been found or not
139 function PMA_STR_binarySearchInArr($str, $arr, $arrsize)
145 while ($top >= $bottom && $found == false) {
146 $mid = intval(($top +
$bottom) / 2);
147 $res = strcmp($str, $arr[$mid]);
150 } elseif ($res < 0) {
158 } // end of the "PMA_STR_binarySearchInArr()" function