summaryrefslogtreecommitdiff
path: root/inc/compatibility.php
blob: ae780e5ac88fa3ca26d6408d8b766e967674db43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
 * compatibility functions
 *
 * This file contains a few functions that might be missing from the PHP build
 */

if(!function_exists('ctype_space')) {
    /**
     * Check for whitespace character(s)
     *
     * @see ctype_space
     * @param string $text
     * @return bool
     */
    function ctype_space($text) {
        if(!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
        if(trim($text) === '') return true;
        return false;
    }
}

if(!function_exists('ctype_digit')) {
    /**
     * Check for numeric character(s)
     *
     * @see ctype_digit
     * @param string $text
     * @return bool
     */
    function ctype_digit($text) {
        if(!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCII chars
        if(preg_match('/^\d+$/', $text)) return true;
        return false;
    }
}