]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - extlib/Validate.php
Revert "Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, addin...
[quix0rs-gnu-social.git] / extlib / Validate.php
index 4c05506b3d896a7961d0cac1ff2e914bf3fcbcda..3d8bc23f216c5867b0b1107be3a637ae33b344a8 100644 (file)
-<?php\r
-/* vim: set expandtab tabstop=4 shiftwidth=4: */\r
-// +----------------------------------------------------------------------+\r
-// | Copyright (c) 1997-2006 Pierre-Alain Joye,Tomas V.V.Cox, Amir Saied  |\r
-// +----------------------------------------------------------------------+\r
-// | This source file is subject to the New BSD license, That is bundled  |\r
-// | with this package in the file LICENSE, and is available through      |\r
-// | the world-wide-web at                                                |\r
-// | http://www.opensource.org/licenses/bsd-license.php                   |\r
-// | If you did not receive a copy of the new BSDlicense and are unable   |\r
-// | to obtain it through the world-wide-web, please send a note to       |\r
-// | pajoye@php.net so we can mail you a copy immediately.                |\r
-// +----------------------------------------------------------------------+\r
-// | Author: Tomas V.V.Cox  <cox@idecnet.com>                             |\r
-// |         Pierre-Alain Joye <pajoye@php.net>                           |\r
-// |         Amir Mohammad Saied <amir@php.net>                           |\r
-// +----------------------------------------------------------------------+\r
-//\r
-/**\r
- * Validation class\r
- *\r
- * Package to validate various datas. It includes :\r
- *   - numbers (min/max, decimal or not)\r
- *   - email (syntax, domain check)\r
- *   - string (predifined type alpha upper and/or lowercase, numeric,...)\r
- *   - date (min, max, rfc822 compliant)\r
- *   - uri (RFC2396)\r
- *   - possibility valid multiple data with a single method call (::multiple)\r
- *\r
- * @category   Validate\r
- * @package    Validate\r
- * @author     Tomas V.V.Cox <cox@idecnet.com>\r
- * @author     Pierre-Alain Joye <pajoye@php.net>\r
- * @author     Amir Mohammad Saied <amir@php.net>\r
- * @copyright  1997-2006 Pierre-Alain Joye,Tomas V.V.Cox,Amir Mohammad Saied\r
- * @license    http://www.opensource.org/licenses/bsd-license.php  New BSD License\r
- * @version    CVS: $Id: Validate.php,v 1.123 2007/12/12 16:45:51 davidc Exp $\r
- * @link       http://pear.php.net/package/Validate\r
- */\r
-\r
-/**\r
- * Methods for common data validations\r
- */\r
-define('VALIDATE_NUM',          '0-9');\r
-define('VALIDATE_SPACE',        '\s');\r
-define('VALIDATE_ALPHA_LOWER',  'a-z');\r
-define('VALIDATE_ALPHA_UPPER',  'A-Z');\r
-define('VALIDATE_ALPHA',        VALIDATE_ALPHA_LOWER . VALIDATE_ALPHA_UPPER);\r
-define('VALIDATE_EALPHA_LOWER', VALIDATE_ALPHA_LOWER . 'áéíóúýàèìòùäëïöüÿâêîôûãñõ¨åæç½ðøþß');\r
-define('VALIDATE_EALPHA_UPPER', VALIDATE_ALPHA_UPPER . 'ÁÉÍÓÚÝÀÈÌÒÙÄËÏÖܾÂÊÎÔÛÃÑÕ¦ÅÆǼÐØÞ');\r
-define('VALIDATE_EALPHA',       VALIDATE_EALPHA_LOWER . VALIDATE_EALPHA_UPPER);\r
-define('VALIDATE_PUNCTUATION',  VALIDATE_SPACE . '\.,;\:&"\'\?\!\(\)');\r
-define('VALIDATE_NAME',         VALIDATE_EALPHA . VALIDATE_SPACE . "'" . "-");\r
-define('VALIDATE_STREET',       VALIDATE_NUM . VALIDATE_NAME . "/\\ºª\.");\r
-\r
-define('VALIDATE_ITLD_EMAILS',  1);\r
-define('VALIDATE_GTLD_EMAILS',  2);\r
-define('VALIDATE_CCTLD_EMAILS', 4);\r
-define('VALIDATE_ALL_EMAILS',   8);\r
-\r
-/**\r
- * Validation class\r
- *\r
- * Package to validate various datas. It includes :\r
- *   - numbers (min/max, decimal or not)\r
- *   - email (syntax, domain check)\r
- *   - string (predifined type alpha upper and/or lowercase, numeric,...)\r
- *   - date (min, max)\r
- *   - uri (RFC2396)\r
- *   - possibility valid multiple data with a single method call (::multiple)\r
- *\r
- * @category   Validate\r
- * @package    Validate\r
- * @author     Tomas V.V.Cox <cox@idecnet.com>\r
- * @author     Pierre-Alain Joye <pajoye@php.net>\r
- * @author     Amir Mohammad Saied <amir@php.net>\r
- * @copyright  1997-2006 Pierre-Alain Joye,Tomas V.V.Cox,Amir Mohammad Saied\r
- * @license    http://www.opensource.org/licenses/bsd-license.php  New BSD License\r
- * @version    Release: @package_version@\r
- * @link       http://pear.php.net/package/Validate\r
- */\r
-class Validate\r
-{\r
-    /**\r
-     * International Top-Level Domain\r
-     *\r
-     * This is an array of the known international\r
-     * top-level domain names.\r
-     *\r
-     * @access protected\r
-     * @var    array     $_iTld (International top-level domains)\r
-     */\r
-    var $_itld = array(\r
-        'arpa',\r
-        'root',\r
-    );\r
-\r
-    /**\r
-     * Generic top-level domain\r
-     *\r
-     * This is an array of the official\r
-     * generic top-level domains.\r
-     *\r
-     * @access protected\r
-     * @var    array     $_gTld (Generic top-level domains)\r
-     */\r
-    var $_gtld = array(\r
-        'aero',\r
-        'biz',\r
-        'cat',\r
-        'com',\r
-        'coop',\r
-        'edu',\r
-        'gov',\r
-        'info',\r
-        'int',\r
-        'jobs',\r
-        'mil',\r
-        'mobi',\r
-        'museum',\r
-        'name',\r
-        'net',\r
-        'org',\r
-        'pro',\r
-        'travel',\r
-        'asia',\r
-        'post',\r
-        'tel',\r
-        'geo',\r
-    );\r
-\r
-    /**\r
-     * Country code top-level domains\r
-     *\r
-     * This is an array of the official country\r
-     * codes top-level domains\r
-     *\r
-     * @access protected\r
-     * @var    array     $_ccTld (Country Code Top-Level Domain)\r
-     */\r
-    var $_cctld = array(\r
-        'ac',\r
-        'ad','ae','af','ag',\r
-        'ai','al','am','an',\r
-        'ao','aq','ar','as',\r
-        'at','au','aw','ax',\r
-        'az','ba','bb','bd',\r
-        'be','bf','bg','bh',\r
-        'bi','bj','bm','bn',\r
-        'bo','br','bs','bt',\r
-        'bu','bv','bw','by',\r
-        'bz','ca','cc','cd',\r
-        'cf','cg','ch','ci',\r
-        'ck','cl','cm','cn',\r
-        'co','cr','cs','cu',\r
-        'cv','cx','cy','cz',\r
-        'de','dj','dk','dm',\r
-        'do','dz','ec','ee',\r
-        'eg','eh','er','es',\r
-        'et','eu','fi','fj',\r
-        'fk','fm','fo','fr',\r
-        'ga','gb','gd','ge',\r
-        'gf','gg','gh','gi',\r
-        'gl','gm','gn','gp',\r
-        'gq','gr','gs','gt',\r
-        'gu','gw','gy','hk',\r
-        'hm','hn','hr','ht',\r
-        'hu','id','ie','il',\r
-        'im','in','io','iq',\r
-        'ir','is','it','je',\r
-        'jm','jo','jp','ke',\r
-        'kg','kh','ki','km',\r
-        'kn','kp','kr','kw',\r
-        'ky','kz','la','lb',\r
-        'lc','li','lk','lr',\r
-        'ls','lt','lu','lv',\r
-        'ly','ma','mc','md',\r
-        'me','mg','mh','mk',\r
-        'ml','mm','mn','mo',\r
-        'mp','mq','mr','ms',\r
-        'mt','mu','mv','mw',\r
-        'mx','my','mz','na',\r
-        'nc','ne','nf','ng',\r
-        'ni','nl','no','np',\r
-        'nr','nu','nz','om',\r
-        'pa','pe','pf','pg',\r
-        'ph','pk','pl','pm',\r
-        'pn','pr','ps','pt',\r
-        'pw','py','qa','re',\r
-        'ro','rs','ru','rw',\r
-        'sa','sb','sc','sd',\r
-        'se','sg','sh','si',\r
-        'sj','sk','sl','sm',\r
-        'sn','so','sr','st',\r
-        'su','sv','sy','sz',\r
-        'tc','td','tf','tg',\r
-        'th','tj','tk','tl',\r
-        'tm','tn','to','tp',\r
-        'tr','tt','tv','tw',\r
-        'tz','ua','ug','uk',\r
-        'us','uy','uz','va',\r
-        'vc','ve','vg','vi',\r
-        'vn','vu','wf','ws',\r
-        'ye','yt','yu','za',\r
-        'zm','zw',\r
-    );\r
-\r
-\r
-    /**\r
-     * Validate a number\r
-     *\r
-     * @param string    $number     Number to validate\r
-     * @param array     $options    array where:\r
-     *                              'decimal'   is the decimal char or false when decimal not allowed\r
-     *                                          i.e. ',.' to allow both ',' and '.'\r
-     *                              'dec_prec'  Number of allowed decimals\r
-     *                              'min'       minimum value\r
-     *                              'max'       maximum value\r
-     *\r
-     * @return boolean true if valid number, false if not\r
-     *\r
-     * @access public\r
-     */\r
-    function number($number, $options = array())\r
-    {\r
-        $decimal = $dec_prec = $min = $max = null;\r
-        if (is_array($options)) {\r
-            extract($options);\r
-        }\r
-\r
-        $dec_prec   = $dec_prec ? "{1,$dec_prec}" : '+';\r
-        $dec_regex  = $decimal  ? "[$decimal][0-9]$dec_prec" : '';\r
-\r
-        if (!preg_match("|^[-+]?\s*[0-9]+($dec_regex)?\$|", $number)) {\r
-            return false;\r
-        }\r
-\r
-        if ($decimal != '.') {\r
-            $number = strtr($number, $decimal, '.');\r
-        }\r
-\r
-        $number = (float)str_replace(' ', '', $number);\r
-        if ($min !== null && $min > $number) {\r
-            return false;\r
-        }\r
-\r
-        if ($max !== null && $max < $number) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    /**\r
-     * Converting a string to UTF-7 (RFC 2152)\r
-     *\r
-     * @param   $string     string to be converted\r
-     *\r
-     * @return  string  converted string\r
-     *\r
-     * @access  private\r
-     */\r
-    function __stringToUtf7($string) {\r
-        $return = '';\r
-        $utf7 = array(\r
-                        'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',\r
-                        'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',\r
-                        'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g',\r
-                        'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',\r
-                        's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2',\r
-                        '3', '4', '5', '6', '7', '8', '9', '+', ','\r
-                    );\r
-\r
-        $state = 0;\r
-        if (!empty($string)) {\r
-            $i = 0;\r
-            while ($i <= strlen($string)) {\r
-                $char = substr($string, $i, 1);\r
-                if ($state == 0) {\r
-                    if ((ord($char) >= 0x7F) || (ord($char) <= 0x1F)) {\r
-                        if ($char) {\r
-                            $return .= '&';\r
-                        }\r
-                        $state = 1;\r
-                    } elseif ($char == '&') {\r
-                        $return .= '&-';\r
-                    } else {\r
-                        $return .= $char;\r
-                    }\r
-                } elseif (($i == strlen($string) ||\r
-                            !((ord($char) >= 0x7F)) || (ord($char) <= 0x1F))) {\r
-                    if ($state != 1) {\r
-                        if (ord($char) > 64) {\r
-                            $return .= '';\r
-                        } else {\r
-                            $return .= $utf7[ord($char)];\r
-                        }\r
-                    }\r
-                    $return .= '-';\r
-                    $state = 0;\r
-                } else {\r
-                    switch($state) {\r
-                        case 1:\r
-                            $return .= $utf7[ord($char) >> 2];\r
-                            $residue = (ord($char) & 0x03) << 4;\r
-                            $state = 2;\r
-                            break;\r
-                        case 2:\r
-                            $return .= $utf7[$residue | (ord($char) >> 4)];\r
-                            $residue = (ord($char) & 0x0F) << 2;\r
-                            $state = 3;\r
-                            break;\r
-                        case 3:\r
-                            $return .= $utf7[$residue | (ord($char) >> 6)];\r
-                            $return .= $utf7[ord($char) & 0x3F];\r
-                            $state = 1;\r
-                            break;\r
-                    }\r
-                }\r
-                $i++;\r
-            }\r
-            return $return;\r
-        }\r
-        return '';\r
-    }\r
-\r
-    /**\r
-     * Validate an email according to full RFC822 (inclusive human readable part)\r
-     *\r
-     * @param string $email email to validate,\r
-     *                      will return the address for optional dns validation\r
-     * @param array $options email() options\r
-     *\r
-     * @return boolean true if valid email, false if not\r
-     *\r
-     * @access private\r
-     */\r
-    function __emailRFC822(&$email, &$options)\r
-    {\r
-        if (Validate::__stringToUtf7($email) != $email) {\r
-            return false;\r
-        }\r
-        static $address = null;\r
-        static $uncomment = null;\r
-        if (!$address) {\r
-            // atom        =  1*<any CHAR except specials, SPACE and CTLs>\r
-            $atom = '[^][()<>@,;:\\".\s\000-\037\177-\377]+\s*';\r
-            // qtext       =  <any CHAR excepting <">,     ; => may be folded\r
-            //         "\" & CR, and including linear-white-space>\r
-            $qtext = '[^"\\\\\r]';\r
-            // quoted-pair =  "\" CHAR                     ; may quote any char\r
-            $quoted_pair = '\\\\.';\r
-            // quoted-string = <"> *(qtext/quoted-pair) <">; Regular qtext or\r
-            //                                             ;   quoted chars.\r
-            $quoted_string = '"(?:' . $qtext . '|' . $quoted_pair . ')*"\s*';\r
-            // word        =  atom / quoted-string\r
-            $word = '(?:' . $atom . '|' . $quoted_string . ')';\r
-            // local-part  =  word *("." word)             ; uninterpreted\r
-            //                                             ; case-preserved\r
-            $local_part = $word . '(?:\.\s*' . $word . ')*';\r
-            // dtext       =  <any CHAR excluding "[",     ; => may be folded\r
-            //         "]", "\" & CR, & including linear-white-space>\r
-            $dtext = '[^][\\\\\r]';\r
-            // domain-literal =  "[" *(dtext / quoted-pair) "]"\r
-            $domain_literal = '\[(?:' . $dtext . '|' . $quoted_pair . ')*\]\s*';\r
-            // sub-domain  =  domain-ref / domain-literal\r
-            // domain-ref  =  atom                         ; symbolic reference\r
-            $sub_domain = '(?:' . $atom . '|' . $domain_literal . ')';\r
-            // domain      =  sub-domain *("." sub-domain)\r
-            $domain = $sub_domain . '(?:\.\s*' . $sub_domain . ')*';\r
-            // addr-spec   =  local-part "@" domain        ; global address\r
-            $addr_spec = $local_part . '@\s*' . $domain;\r
-            // route       =  1#("@" domain) ":"           ; path-relative\r
-            $route = '@' . $domain . '(?:,@\s*' . $domain . ')*:\s*';\r
-            // route-addr  =  "<" [route] addr-spec ">"\r
-            $route_addr = '<\s*(?:' . $route . ')?' . $addr_spec . '>\s*';\r
-            // phrase      =  1*word                       ; Sequence of words\r
-            $phrase = $word  . '+';\r
-            // mailbox     =  addr-spec                    ; simple address\r
-            //             /  phrase route-addr            ; name & addr-spec\r
-            $mailbox = '(?:' . $addr_spec . '|' . $phrase . $route_addr . ')';\r
-            // group       =  phrase ":" [#mailbox] ";"\r
-            $group = $phrase . ':\s*(?:' . $mailbox . '(?:,\s*' . $mailbox . ')*)?;\s*';\r
-            //     address     =  mailbox                      ; one addressee\r
-            //                 /  group                        ; named list\r
-            $address = '/^\s*(?:' . $mailbox . '|' . $group . ')$/';\r
-            $uncomment =\r
-            '/((?:(?:\\\\"|[^("])*(?:' . $quoted_string .\r
-                                             ')?)*)((?<!\\\\)\((?:(?2)|.)*?(?<!\\\\)\))/';\r
-        }\r
-        // strip comments\r
-        $email = preg_replace($uncomment, '$1 ', $email);\r
-        return preg_match($address, $email);\r
-    }\r
-\r
-    /**\r
-     * Full TLD Validation function\r
-     *\r
-     * This function is used to make a much more proficient validation\r
-     * against all types of official domain names.\r
-     *\r
-     * @access protected\r
-     * @param  string    $email    The email address to check.\r
-     * @param  array     $options  The options for validation\r
-     * @return bool      True if validating succeeds\r
-     */\r
-    function _fullTLDValidation($email, $options)\r
-    {\r
-        $validate = array();\r
-\r
-        switch ($options) {\r
-            /** 1 */\r
-            case VALIDATE_ITLD_EMAILS:\r
-                array_push($validate, 'itld');\r
-                break;\r
-\r
-            /** 2 */\r
-            case VALIDATE_GTLD_EMAILS:\r
-                array_push($validate, 'gtld');\r
-                break;\r
-\r
-            /** 3 */\r
-            case VALIDATE_ITLD_EMAILS | VALIDATE_GTLD_EMAILS:\r
-                array_push($validate, 'itld');\r
-                array_push($validate, 'gtld');\r
-                break;\r
-\r
-            /** 4 */\r
-            case VALIDATE_CCTLD_EMAILS:\r
-                array_push($validate, 'cctld');\r
-                break;\r
-\r
-            /** 5 */\r
-            case VALIDATE_CCTLD_EMAILS | VALIDATE_ITLD_EMAILS:\r
-                array_push($validate, 'cctld');\r
-                array_push($validate, 'itld');\r
-                break;\r
-\r
-            /** 6 */\r
-            case VALIDATE_CCTLD_EMAILS ^ VALIDATE_ITLD_EMAILS:\r
-                array_push($validate, 'cctld');\r
-                array_push($validate, 'itld');\r
-                break;\r
-\r
-            /** 7 - 8 */\r
-            case VALIDATE_CCTLD_EMAILS | VALIDATE_ITLD_EMAILS | VALIDATE_GTLD_EMAILS:\r
-            case VALIDATE_ALL_EMAILS:\r
-                array_push($validate, 'cctld');\r
-                array_push($validate, 'itld');\r
-                array_push($validate, 'gtld');\r
-                break;\r
-        }\r
-\r
-        /**\r
-         * Debugging still, not implemented but code is somewhat here.\r
-         */\r
-\r
-        $self = new Validate;\r
-\r
-        $toValidate = array();\r
-\r
-        foreach ($validate as $valid) {\r
-            $tmpVar = '_' . (string)$valid;\r
-            $toValidate[$valid] = $self->{$tmpVar};\r
-        }\r
-\r
-        $e = $self->executeFullEmailValidation($email, $toValidate);\r
-\r
-        return $e;\r
-    }\r
-    // {{{ protected function executeFullEmailValidation\r
-    /**\r
-     * Execute the validation\r
-     *\r
-     * This function will execute the full email vs tld\r
-     * validation using an array of tlds passed to it.\r
-     *\r
-     * @access public\r
-     * @param  string $email       The email to validate.\r
-     * @param  array  $arrayOfTLDs The array of the TLDs to validate\r
-     * @return true or false (Depending on if it validates or if it does not)\r
-     */\r
-    function executeFullEmailValidation($email, $arrayOfTLDs)\r
-    {\r
-        $emailEnding = explode('.', $email);\r
-        $emailEnding = $emailEnding[count($emailEnding)-1];\r
-        \r
-        foreach ($arrayOfTLDs as $validator => $keys) {\r
-            if (in_array($emailEnding, $keys)) {\r
-                return true;\r
-            }\r
-        }\r
-        return false;\r
-    }\r
-    // }}}\r
-\r
-    /**\r
-     * Validate an email\r
-     *\r
-     * @param string $email email to validate\r
-     * @param mixed boolean (BC) $check_domain   Check or not if the domain exists\r
-     *              array $options associative array of options\r
-     *              'check_domain' boolean Check or not if the domain exists\r
-     *              'use_rfc822' boolean Apply the full RFC822 grammar\r
-     *\r
-     * @return boolean true if valid email, false if not\r
-     *\r
-     * @access public\r
-     */\r
-    function email($email, $options = null)\r
-    {\r
-        $check_domain = false;\r
-        $use_rfc822 = false;\r
-        if (is_bool($options)) {\r
-            $check_domain = $options;\r
-        } elseif (is_array($options)) {\r
-            extract($options);\r
-        }\r
-\r
-        /**\r
-         * @todo Fix bug here.. even if it passes this, it won't be passing\r
-         *       The regular expression below\r
-         */\r
-        if (isset($fullTLDValidation)) {\r
-            $valid = Validate::_fullTLDValidation($email, $fullTLDValidation);\r
-\r
-            if (!$valid) {\r
-                return false;\r
-            }\r
-        }\r
-\r
-        // the base regexp for address\r
-        $regex = '&^(?:                                               # recipient:\r
-         ("\s*(?:[^"\f\n\r\t\v\b\s]+\s*)+")|                          #1 quoted name\r
-         ([-\w!\#\$%\&\'*+~/^`|{}]+(?:\.[-\w!\#\$%\&\'*+~/^`|{}]+)*)) #2 OR dot-atom\r
-         @(((\[)?                     #3 domain, 4 as IPv4, 5 optionally bracketed\r
-         (?:(?:(?:(?:25[0-5])|(?:2[0-4][0-9])|(?:[0-1]?[0-9]?[0-9]))\.){3}\r
-               (?:(?:25[0-5])|(?:2[0-4][0-9])|(?:[0-1]?[0-9]?[0-9]))))(?(5)\])|\r
-         ((?:[a-z0-9](?:[-a-z0-9]*[a-z0-9])?\.)*[a-z0-9](?:[-a-z0-9]*[a-z0-9])?)  #6 domain as hostname\r
-         \.((?:([^- ])[-a-z]*[-a-z]))) #7 TLD \r
-         $&xi';\r
-        \r
-        if ($use_rfc822? Validate::__emailRFC822($email, $options) :\r
-            preg_match($regex, $email)) {\r
-            if ($check_domain && function_exists('checkdnsrr')) {\r
-                list (, $domain)  = explode('@', $email);\r
-                if (checkdnsrr($domain, 'MX') || checkdnsrr($domain, 'A')) {\r
-                    return true;\r
-                }\r
-                return false;\r
-            }\r
-            return true;\r
-        }\r
-        return false;\r
-    }\r
-\r
-   /**\r
-     * Validate a string using the given format 'format'\r
-     *\r
-     * @param string    $string     String to validate\r
-     * @param array     $options    Options array where:\r
-     *                              'format' is the format of the string\r
-     *                                  Ex: VALIDATE_NUM . VALIDATE_ALPHA (see constants)\r
-     *                              'min_length' minimum length\r
-     *                              'max_length' maximum length\r
-     *\r
-     * @return boolean true if valid string, false if not\r
-     *\r
-     * @access public\r
-     */\r
-    function string($string, $options)\r
-    {\r
-        $format = null;\r
-        $min_length = $max_length = 0;\r
-        if (is_array($options)) {\r
-            extract($options);\r
-        }\r
-        if ($format && !preg_match("|^[$format]*\$|s", $string)) {\r
-            return false;\r
-        }\r
-        if ($min_length && strlen($string) < $min_length) {\r
-            return false;\r
-        }\r
-        if ($max_length && strlen($string) > $max_length) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    /**\r
-     * Validate an URI (RFC2396)\r
-     * This function will validate 'foobarstring' by default, to get it to validate\r
-     * only http, https, ftp and such you have to pass it in the allowed_schemes\r
-     * option, like this:\r
-     * <code>\r
-     * $options = array('allowed_schemes' => array('http', 'https', 'ftp'))\r
-     * var_dump(Validate::uri('http://www.example.org', $options));\r
-     * </code>\r
-     *\r
-     * NOTE 1: The rfc2396 normally allows middle '-' in the top domain\r
-     *         e.g. http://example.co-m should be valid\r
-     *         However, as '-' is not used in any known TLD, it is invalid\r
-     * NOTE 2: As double shlashes // are allowed in the path part, only full URIs\r
-     *         including an authority can be valid, no relative URIs\r
-     *         the // are mandatory (optionally preceeded by the 'sheme:' )\r
-     * NOTE 3: the full complience to rfc2396 is not achieved by default\r
-     *         the characters ';/?:@$,' will not be accepted in the query part\r
-     *         if not urlencoded, refer to the option "strict'"\r
-     *\r
-     * @param string    $url        URI to validate\r
-     * @param array     $options    Options used by the validation method.\r
-     *                              key => type\r
-     *                              'domain_check' => boolean\r
-     *                                  Whether to check the DNS entry or not\r
-     *                              'allowed_schemes' => array, list of protocols\r
-     *                                  List of allowed schemes ('http',\r
-     *                                  'ssh+svn', 'mms')\r
-     *                              'strict' => string the refused chars\r
-     *                                   in query and fragment parts\r
-     *                                   default: ';/?:@$,'\r
-     *                                   empty: accept all rfc2396 foreseen chars\r
-     *\r
-     * @return boolean true if valid uri, false if not\r
-     *\r
-     * @access public\r
-     */\r
-    function uri($url, $options = null)\r
-    {\r
-        $strict = ';/?:@$,';\r
-        $domain_check = false;\r
-        $allowed_schemes = null;\r
-        if (is_array($options)) {\r
-            extract($options);\r
-        }\r
-        if (preg_match(\r
-             '&^(?:([a-z][-+.a-z0-9]*):)?                             # 1. scheme\r
-              (?://                                                   # authority start\r
-              (?:((?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'();:\&=+$,])*)@)?    # 2. authority-userinfo\r
-              (?:((?:[a-z0-9](?:[-a-z0-9]*[a-z0-9])?\.)*[a-z](?:[a-z0-9]+)?\.?)  # 3. authority-hostname OR\r
-              |([0-9]{1,3}(?:\.[0-9]{1,3}){3}))                       # 4. authority-ipv4\r
-              (?::([0-9]*))?)                                        # 5. authority-port\r
-              ((?:/(?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'():@\&=+$,;])*)*/?)? # 6. path\r
-              (?:\?([^#]*))?                                          # 7. query\r
-              (?:\#((?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'();/?:@\&=+$,])*))? # 8. fragment\r
-              $&xi', $url, $matches)) {\r
-            $scheme = isset($matches[1]) ? $matches[1] : '';\r
-            $authority = isset($matches[3]) ? $matches[3] : '' ;\r
-            if (is_array($allowed_schemes) &&\r
-                !in_array($scheme,$allowed_schemes)\r
-            ) {\r
-                return false;\r
-            }\r
-            if (!empty($matches[4])) {\r
-                $parts = explode('.', $matches[4]);\r
-                foreach ($parts as $part) {\r
-                    if ($part > 255) {\r
-                        return false;\r
-                    }\r
-                }\r
-            } elseif ($domain_check && function_exists('checkdnsrr')) {\r
-                if (!checkdnsrr($authority, 'A')) {\r
-                    return false;\r
-                }\r
-            }\r
-            if ($strict) {\r
-                $strict = '#[' . preg_quote($strict, '#') . ']#';\r
-                if ((!empty($matches[7]) && preg_match($strict, $matches[7]))\r
-                 || (!empty($matches[8]) && preg_match($strict, $matches[8]))) {\r
-                    return false;\r
-                }\r
-            }\r
-            return true;\r
-        }\r
-        return false;\r
-    }\r
-\r
-    /**\r
-     * Validate date and times. Note that this method need the Date_Calc class\r
-     *\r
-     * @param string    $date   Date to validate\r
-     * @param array     $options array options where :\r
-     *                          'format' The format of the date (%d-%m-%Y)\r
-     *                                   or rfc822_compliant\r
-     *                          'min' The date has to be greater\r
-     *                                than this array($day, $month, $year)\r
-     *                                or PEAR::Date object\r
-     *                          'max' The date has to be smaller than\r
-     *                                this array($day, $month, $year)\r
-     *                                or PEAR::Date object\r
-     *\r
-     * @return boolean true if valid date/time, false if not\r
-     *\r
-     * @access public\r
-     */\r
-    function date($date, $options)\r
-    {\r
-        $max = $min = false;\r
-        $format = '';\r
-        if (is_array($options)) {\r
-            extract($options);\r
-        }\r
-\r
-        if (strtolower($format) == 'rfc822_compliant') {\r
-            $preg = '&^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),) \s+\r
-                    (?:(\d{2})?) \s+\r
-                    (?:(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)?) \s+\r
-                    (?:(\d{2}(\d{2})?)?) \s+\r
-                    (?:(\d{2}?)):(?:(\d{2}?))(:(?:(\d{2}?)))? \s+\r
-                    (?:[+-]\d{4}|UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Za-ik-z])$&xi';\r
-\r
-            if (!preg_match($preg, $date, $matches)) {\r
-                return false;\r
-            }\r
-\r
-            $year   = (int)$matches[4];\r
-            $months = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',\r
-                            'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');\r
-            $month  = array_keys($months, $matches[3]);\r
-            $month  = (int)$month[0]+1;\r
-            $day    = (int)$matches[2];\r
-            $weekday= $matches[1];\r
-            $hour   = (int)$matches[6];\r
-            $minute = (int)$matches[7];\r
-            isset($matches[9]) ? $second = (int)$matches[9] : $second = 0;\r
-\r
-            if ((strlen($year) != 4)        ||\r
-                ($day    > 31   || $day < 1)||\r
-                ($hour   > 23)  ||\r
-                ($minute > 59)  ||\r
-                ($second > 59)) {\r
-                    return false;\r
-            }\r
-        } else {\r
-            $date_len = strlen($format);\r
-            for ($i = 0; $i < $date_len; $i++) {\r
-                $c = $format{$i};\r
-                if ($c == '%') {\r
-                    $next = $format{$i + 1};\r
-                    switch ($next) {\r
-                        case 'j':\r
-                        case 'd':\r
-                            if ($next == 'j') {\r
-                                $day = (int)Validate::_substr($date, 1, 2);\r
-                            } else {\r
-                                $day = (int)Validate::_substr($date, 0, 2);\r
-                            }\r
-                            if ($day < 1 || $day > 31) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        case 'm':\r
-                        case 'n':\r
-                            if ($next == 'm') {\r
-                                $month = (int)Validate::_substr($date, 0, 2);\r
-                            } else {\r
-                                $month = (int)Validate::_substr($date, 1, 2);\r
-                            }\r
-                            if ($month < 1 || $month > 12) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        case 'Y':\r
-                        case 'y':\r
-                            if ($next == 'Y') {\r
-                                $year = Validate::_substr($date, 4);\r
-                                $year = (int)$year?$year:'';\r
-                            } else {\r
-                                $year = (int)(substr(date('Y'), 0, 2) .\r
-                                              Validate::_substr($date, 2));\r
-                            }\r
-                            if (strlen($year) != 4 || $year < 0 || $year > 9999) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        case 'g':\r
-                        case 'h':\r
-                            if ($next == 'g') {\r
-                                $hour = Validate::_substr($date, 1, 2);\r
-                            } else {\r
-                                $hour = Validate::_substr($date, 2);\r
-                            }\r
-                            if (!preg_match('/^\d+$/', $hour) || $hour < 0 || $hour > 12) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        case 'G':\r
-                        case 'H':\r
-                            if ($next == 'G') {\r
-                                $hour = Validate::_substr($date, 1, 2);\r
-                            } else {\r
-                                $hour = Validate::_substr($date, 2);\r
-                            }\r
-                            if (!preg_match('/^\d+$/', $hour) || $hour < 0 || $hour > 24) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        case 's':\r
-                        case 'i':\r
-                            $t = Validate::_substr($date, 2);\r
-                            if (!preg_match('/^\d+$/', $t) || $t < 0 || $t > 59) {\r
-                                return false;\r
-                            }\r
-                            break;\r
-                        default:\r
-                            trigger_error("Not supported char `$next' after % in offset " . ($i+2), E_USER_WARNING);\r
-                    }\r
-                    $i++;\r
-                } else {\r
-                    //literal\r
-                    if (Validate::_substr($date, 1) != $c) {\r
-                        return false;\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        // there is remaing data, we don't want it\r
-        if (strlen($date) && (strtolower($format) != 'rfc822_compliant')) {\r
-            return false;\r
-        }\r
-\r
-        if (isset($day) && isset($month) && isset($year)) {\r
-            if (!checkdate($month, $day, $year)) {\r
-                return false;\r
-            }\r
-\r
-            if (strtolower($format) == 'rfc822_compliant') {\r
-                if ($weekday != date("D", mktime(0, 0, 0, $month, $day, $year))) {\r
-                    return false;\r
-                }\r
-            }\r
-\r
-            if ($min) {\r
-                include_once 'Date/Calc.php';\r
-                if (is_a($min, 'Date') &&\r
-                    (Date_Calc::compareDates($day, $month, $year,\r
-                                             $min->getDay(), $min->getMonth(), $min->getYear()) < 0))\r
-                {\r
-                    return false;\r
-                } elseif (is_array($min) &&\r
-                        (Date_Calc::compareDates($day, $month, $year,\r
-                                             $min[0], $min[1], $min[2]) < 0))\r
-                {\r
-                    return false;\r
-                }\r
-            }\r
-\r
-            if ($max) {\r
-                include_once 'Date/Calc.php';\r
-                if (is_a($max, 'Date') &&\r
-                    (Date_Calc::compareDates($day, $month, $year,\r
-                                             $max->getDay(), $max->getMonth(), $max->getYear()) > 0))\r
-                {\r
-                    return false;\r
-                } elseif (is_array($max) &&\r
-                        (Date_Calc::compareDates($day, $month, $year,\r
-                                                 $max[0], $max[1], $max[2]) > 0))\r
-                {\r
-                    return false;\r
-                }\r
-            }\r
-        }\r
-\r
-        return true;\r
-    }\r
-\r
-    function _substr(&$date, $num, $opt = false)\r
-    {\r
-        if ($opt && strlen($date) >= $opt && preg_match('/^[0-9]{'.$opt.'}/', $date, $m)) {\r
-            $ret = $m[0];\r
-        } else {\r
-            $ret = substr($date, 0, $num);\r
-        }\r
-        $date = substr($date, strlen($ret));\r
-        return $ret;\r
-    }\r
-\r
-    function _modf($val, $div) {\r
-        if (function_exists('bcmod')) {\r
-            return bcmod($val, $div);\r
-        } elseif (function_exists('fmod')) {\r
-            return fmod($val, $div);\r
-        }\r
-        $r = $val / $div;\r
-        $i = intval($r);\r
-        return intval($val - $i * $div + .1);\r
-    }\r
-\r
-    /**\r
-     * Calculates sum of product of number digits with weights\r
-     *\r
-     * @param string $number number string\r
-     * @param array $weights reference to array of weights\r
-     *\r
-     * @returns int returns product of number digits with weights\r
-     *\r
-     * @access protected\r
-     */\r
-    function _multWeights($number, &$weights) {\r
-        if (!is_array($weights)) {\r
-            return -1;\r
-        }\r
-        $sum = 0;\r
-\r
-        $count = min(count($weights), strlen($number));\r
-        if ($count == 0)  { // empty string or weights array\r
-            return -1;\r
-        }\r
-        for ($i = 0; $i < $count; ++$i) {\r
-            $sum += intval(substr($number, $i, 1)) * $weights[$i];\r
-        }\r
-\r
-        return $sum;\r
-    }\r
-\r
-    /**\r
-     * Calculates control digit for a given number\r
-     *\r
-     * @param string $number number string\r
-     * @param array $weights reference to array of weights\r
-     * @param int $modulo (optionsl) number\r
-     * @param int $subtract (optional) number\r
-     * @param bool $allow_high (optional) true if function can return number higher than 10\r
-     *\r
-     * @returns int -1 calculated control number is returned\r
-     *\r
-     * @access protected\r
-     */\r
-    function _getControlNumber($number, &$weights, $modulo = 10, $subtract = 0, $allow_high = false) {\r
-        // calc sum\r
-        $sum = Validate::_multWeights($number, $weights);\r
-        if ($sum == -1) {\r
-            return -1;\r
-        }\r
-        $mod = Validate::_modf($sum, $modulo);  // calculate control digit\r
-\r
-        if ($subtract > $mod && $mod > 0) {\r
-            $mod = $subtract - $mod;\r
-        }\r
-        if ($allow_high === false) {\r
-            $mod %= 10;           // change 10 to zero\r
-        }\r
-        return $mod;\r
-    }\r
-\r
-    /**\r
-     * Validates a number\r
-     *\r
-     * @param string $number number to validate\r
-     * @param array $weights reference to array of weights\r
-     * @param int $modulo (optionsl) number\r
-     * @param int $subtract (optional) numbier\r
-     *\r
-     * @returns bool true if valid, false if not\r
-     *\r
-     * @access protected\r
-     */\r
-    function _checkControlNumber($number, &$weights, $modulo = 10, $subtract = 0) {\r
-        if (strlen($number) < count($weights)) {\r
-            return false;\r
-        }\r
-        $target_digit  = substr($number, count($weights), 1);\r
-        $control_digit = Validate::_getControlNumber($number, $weights, $modulo, $subtract, $modulo > 10);\r
-\r
-        if ($control_digit == -1) {\r
-            return false;\r
-        }\r
-        if ($target_digit === 'X' && $control_digit == 10) {\r
-            return true;\r
-        }\r
-        if ($control_digit != $target_digit) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    /**\r
-     * Bulk data validation for data introduced in the form of an\r
-     * assoc array in the form $var_name => $value.\r
-     * Can be used on any of Validate subpackages\r
-     *\r
-     * @param  array   $data     Ex: array('name' => 'toto', 'email' => 'toto@thing.info');\r
-     * @param  array   $val_type Contains the validation type and all parameters used in.\r
-     *                           'val_type' is not optional\r
-     *                           others validations properties must have the same name as the function\r
-     *                           parameters.\r
-     *                           Ex: array('toto'=>array('type'=>'string','format'='toto@thing.info','min_length'=>5));\r
-     * @param  boolean $remove if set, the elements not listed in data will be removed\r
-     *\r
-     * @return array   value name => true|false    the value name comes from the data key\r
-     *\r
-     * @access public\r
-     */\r
-    function multiple(&$data, &$val_type, $remove = false)\r
-    {\r
-        $keys = array_keys($data);\r
-        $valid = array();\r
-        foreach ($keys as $var_name) {\r
-            if (!isset($val_type[$var_name])) {\r
-                if ($remove) {\r
-                    unset($data[$var_name]);\r
-                }\r
-                continue;\r
-            }\r
-            $opt = $val_type[$var_name];\r
-            $methods = get_class_methods('Validate');\r
-            $val2check = $data[$var_name];\r
-            // core validation method\r
-            if (in_array(strtolower($opt['type']), $methods)) {\r
-                //$opt[$opt['type']] = $data[$var_name];\r
-                $method = $opt['type'];\r
-                unset($opt['type']);\r
-\r
-                if (sizeof($opt) == 1 && is_array(reset($opt))) {\r
-                    $opt = array_pop($opt);\r
-                }\r
-                $valid[$var_name] = call_user_func(array('Validate', $method), $val2check, $opt);\r
-\r
-            /**\r
-             * external validation method in the form:\r
-             * "<class name><underscore><method name>"\r
-             * Ex: us_ssn will include class Validate/US.php and call method ssn()\r
-             */\r
-            } elseif (strpos($opt['type'], '_') !== false) {\r
-                $validateType = explode('_', $opt['type']);\r
-                $method       = array_pop($validateType);\r
-                $class        = implode('_', $validateType);\r
-                $classPath    = str_replace('_', DIRECTORY_SEPARATOR, $class);\r
-                $class        = 'Validate_' . $class;\r
-                if (!@include_once "Validate/$classPath.php") {\r
-                    trigger_error("$class isn't installed or you may have some permissoin issues", E_USER_ERROR);\r
-                }\r
-\r
-                $ce = substr(phpversion(), 0, 1) > 4 ? class_exists($class, false) : class_exists($class);\r
-                if (!$ce ||\r
-                    !in_array($method, get_class_methods($class)))\r
-                {\r
-                    trigger_error("Invalid validation type $class::$method", E_USER_WARNING);\r
-                    continue;\r
-                }\r
-                unset($opt['type']);\r
-                if (sizeof($opt) == 1) {\r
-                    $opt = array_pop($opt);\r
-                }\r
-                $valid[$var_name] = call_user_func(array($class, $method), $data[$var_name], $opt);\r
-            } else {\r
-                trigger_error("Invalid validation type {$opt['type']}", E_USER_WARNING);\r
-            }\r
-        }\r
-        return $valid;\r
-    }\r
-}\r
-\r
+<?php
+/**
+ * Validation class
+ *
+ * Copyright (c) 1997-2006 Pierre-Alain Joye,Tomas V.V.Cox, Amir Saied  
+ *
+ * This source file is subject to the New BSD license, That is bundled  
+ * with this package in the file LICENSE, and is available through      
+ * the world-wide-web at                                                
+ * http://www.opensource.org/licenses/bsd-license.php                   
+ * If you did not receive a copy of the new BSDlicense and are unable   
+ * to obtain it through the world-wide-web, please send a note to       
+ * pajoye@php.net so we can mail you a copy immediately.                
+ *
+ * Author: Tomas V.V.Cox  <cox@idecnet.com>                             
+ *         Pierre-Alain Joye <pajoye@php.net>                           
+ *         Amir Mohammad Saied <amir@php.net>                           
+ *
+ *
+ * Package to validate various datas. It includes :
+ *   - numbers (min/max, decimal or not)
+ *   - email (syntax, domain check)
+ *   - string (predifined type alpha upper and/or lowercase, numeric,...)
+ *   - date (min, max, rfc822 compliant)
+ *   - uri (RFC2396)
+ *   - possibility valid multiple data with a single method call (::multiple)
+ *
+ * @category   Validate
+ * @package    Validate
+ * @author     Tomas V.V.Cox <cox@idecnet.com>
+ * @author     Pierre-Alain Joye <pajoye@php.net>
+ * @author     Amir Mohammad Saied <amir@php.net>
+ * @copyright  1997-2006 Pierre-Alain Joye,Tomas V.V.Cox,Amir Mohammad Saied
+ * @license    http://www.opensource.org/licenses/bsd-license.php  New BSD License
+ * @version    CVS: $Id: Validate.php,v 1.134 2009/01/28 12:27:33 davidc Exp $
+ * @link       http://pear.php.net/package/Validate
+ */
+
+/**
+ * Methods for common data validations
+ */
+define('VALIDATE_NUM',          '0-9');
+define('VALIDATE_SPACE',        '\s');
+define('VALIDATE_ALPHA_LOWER',  'a-z');
+define('VALIDATE_ALPHA_UPPER',  'A-Z');
+define('VALIDATE_ALPHA',        VALIDATE_ALPHA_LOWER . VALIDATE_ALPHA_UPPER);
+define('VALIDATE_EALPHA_LOWER', VALIDATE_ALPHA_LOWER . 'áéíóúýàèìòùäëïöüÿâêîôûãñõ¨åæç½ðøþß');
+define('VALIDATE_EALPHA_UPPER', VALIDATE_ALPHA_UPPER . 'ÁÉÍÓÚÝÀÈÌÒÙÄËÏÖܾÂÊÎÔÛÃÑÕ¦ÅÆǼÐØÞ');
+define('VALIDATE_EALPHA',       VALIDATE_EALPHA_LOWER . VALIDATE_EALPHA_UPPER);
+define('VALIDATE_PUNCTUATION',  VALIDATE_SPACE . '\.,;\:&"\'\?\!\(\)');
+define('VALIDATE_NAME',         VALIDATE_EALPHA . VALIDATE_SPACE . "'" . "-");
+define('VALIDATE_STREET',       VALIDATE_NUM . VALIDATE_NAME . "/\\ºª\.");
+
+define('VALIDATE_ITLD_EMAILS',  1);
+define('VALIDATE_GTLD_EMAILS',  2);
+define('VALIDATE_CCTLD_EMAILS', 4);
+define('VALIDATE_ALL_EMAILS',   8);
+
+/**
+ * Validation class
+ *
+ * Package to validate various datas. It includes :
+ *   - numbers (min/max, decimal or not)
+ *   - email (syntax, domain check)
+ *   - string (predifined type alpha upper and/or lowercase, numeric,...)
+ *   - date (min, max)
+ *   - uri (RFC2396)
+ *   - possibility valid multiple data with a single method call (::multiple)
+ *
+ * @category  Validate
+ * @package   Validate
+ * @author    Tomas V.V.Cox <cox@idecnet.com>
+ * @author    Pierre-Alain Joye <pajoye@php.net>
+ * @author    Amir Mohammad Saied <amir@php.net>
+ * @copyright 1997-2006 Pierre-Alain Joye,Tomas V.V.Cox,Amir Mohammad Saied
+ * @license   http://www.opensource.org/licenses/bsd-license.php  New BSD License
+ * @version   Release: @package_version@
+ * @link      http://pear.php.net/package/Validate
+ */
+class Validate
+{
+    /**
+     * International Top-Level Domain
+     *
+     * This is an array of the known international
+     * top-level domain names.
+     *
+     * @access protected
+     * @var    array     $_iTld (International top-level domains)
+     */
+    var $_itld = array(
+        'arpa',
+        'root',
+    );
+
+    /**
+     * Generic top-level domain
+     *
+     * This is an array of the official
+     * generic top-level domains.
+     *
+     * @access protected
+     * @var    array     $_gTld (Generic top-level domains)
+     */
+    var $_gtld = array(
+        'aero',
+        'biz',
+        'cat',
+        'com',
+        'coop',
+        'edu',
+        'gov',
+        'info',
+        'int',
+        'jobs',
+        'mil',
+        'mobi',
+        'museum',
+        'name',
+        'net',
+        'org',
+        'pro',
+        'travel',
+        'asia',
+        'post',
+        'tel',
+        'geo',
+    );
+
+    /**
+     * Country code top-level domains
+     *
+     * This is an array of the official country
+     * codes top-level domains
+     *
+     * @access protected
+     * @var    array     $_ccTld (Country Code Top-Level Domain)
+     */
+    var $_cctld = array(
+        'ac',
+        'ad','ae','af','ag',
+        'ai','al','am','an',
+        'ao','aq','ar','as',
+        'at','au','aw','ax',
+        'az','ba','bb','bd',
+        'be','bf','bg','bh',
+        'bi','bj','bm','bn',
+        'bo','br','bs','bt',
+        'bu','bv','bw','by',
+        'bz','ca','cc','cd',
+        'cf','cg','ch','ci',
+        'ck','cl','cm','cn',
+        'co','cr','cs','cu',
+        'cv','cx','cy','cz',
+        'de','dj','dk','dm',
+        'do','dz','ec','ee',
+        'eg','eh','er','es',
+        'et','eu','fi','fj',
+        'fk','fm','fo','fr',
+        'ga','gb','gd','ge',
+        'gf','gg','gh','gi',
+        'gl','gm','gn','gp',
+        'gq','gr','gs','gt',
+        'gu','gw','gy','hk',
+        'hm','hn','hr','ht',
+        'hu','id','ie','il',
+        'im','in','io','iq',
+        'ir','is','it','je',
+        'jm','jo','jp','ke',
+        'kg','kh','ki','km',
+        'kn','kp','kr','kw',
+        'ky','kz','la','lb',
+        'lc','li','lk','lr',
+        'ls','lt','lu','lv',
+        'ly','ma','mc','md',
+        'me','mg','mh','mk',
+        'ml','mm','mn','mo',
+        'mp','mq','mr','ms',
+        'mt','mu','mv','mw',
+        'mx','my','mz','na',
+        'nc','ne','nf','ng',
+        'ni','nl','no','np',
+        'nr','nu','nz','om',
+        'pa','pe','pf','pg',
+        'ph','pk','pl','pm',
+        'pn','pr','ps','pt',
+        'pw','py','qa','re',
+        'ro','rs','ru','rw',
+        'sa','sb','sc','sd',
+        'se','sg','sh','si',
+        'sj','sk','sl','sm',
+        'sn','so','sr','st',
+        'su','sv','sy','sz',
+        'tc','td','tf','tg',
+        'th','tj','tk','tl',
+        'tm','tn','to','tp',
+        'tr','tt','tv','tw',
+        'tz','ua','ug','uk',
+        'us','uy','uz','va',
+        'vc','ve','vg','vi',
+        'vn','vu','wf','ws',
+        'ye','yt','yu','za',
+        'zm','zw',
+    );
+
+    /**
+     * Validate a tag URI (RFC4151)
+     *
+     * @param string $uri tag URI to validate
+     *
+     * @return boolean true if valid tag URI, false if not
+     *
+     * @access private
+     */
+    function __uriRFC4151($uri)
+    {
+        $datevalid = false;
+        if (preg_match(
+            '/^tag:(?<name>.*),(?<date>\d{4}-?\d{0,2}-?\d{0,2}):(?<specific>.*)(.*:)*$/', $uri, $matches)) {
+            $date  = $matches['date'];
+            $date6 = strtotime($date);
+            if ((strlen($date) == 4) && $date <= date('Y')) {
+                $datevalid = true;
+            } elseif ((strlen($date) == 7) && ($date6 < strtotime("now"))) {
+                $datevalid = true;
+            } elseif ((strlen($date) == 10) && ($date6 < strtotime("now"))) {
+                $datevalid = true;
+            }
+            if (self::email($matches['name'])) {
+                $namevalid = true;
+            } else {
+                $namevalid = self::email('info@' . $matches['name']);
+            }
+            return $datevalid && $namevalid;
+        } else {
+            return false;
+        }
+    }
+
+    /**
+     * Validate a number
+     *
+     * @param string $number  Number to validate
+     * @param array  $options array where:
+     *                          'decimal'  is the decimal char or false when decimal
+     *                                     not allowed.
+     *                                     i.e. ',.' to allow both ',' and '.'
+     *                          'dec_prec' Number of allowed decimals
+     *                          'min'      minimum value
+     *                          'max'      maximum value
+     *
+     * @return boolean true if valid number, false if not
+     *
+     * @access public
+     */
+    function number($number, $options = array())
+    {
+        $decimal = $dec_prec = $min = $max = null;
+        if (is_array($options)) {
+            extract($options);
+        }
+
+        $dec_prec  = $dec_prec ? "{1,$dec_prec}" : '+';
+        $dec_regex = $decimal  ? "[$decimal][0-9]$dec_prec" : '';
+
+        if (!preg_match("|^[-+]?\s*[0-9]+($dec_regex)?\$|", $number)) {
+            return false;
+        }
+
+        if ($decimal != '.') {
+            $number = strtr($number, $decimal, '.');
+        }
+
+        $number = (float)str_replace(' ', '', $number);
+        if ($min !== null && $min > $number) {
+            return false;
+        }
+
+        if ($max !== null && $max < $number) {
+            return false;
+        }
+        return true;
+    }
+
+    /**
+     * Converting a string to UTF-7 (RFC 2152)
+     *
+     * @param string $string string to be converted
+     *
+     * @return  string  converted string
+     *
+     * @access  private
+     */
+    function __stringToUtf7($string)
+    {
+        $return = '';
+        $utf7   = array(
+                        'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
+                        'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
+                        'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
+                        'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',
+                        's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2',
+                        '3', '4', '5', '6', '7', '8', '9', '+', ','
+                    );
+
+
+        $state = 0;
+
+        if (!empty($string)) {
+            $i = 0;
+            while ($i <= strlen($string)) {
+                $char = substr($string, $i, 1);
+                if ($state == 0) {
+                    if ((ord($char) >= 0x7F) || (ord($char) <= 0x1F)) {
+                        if ($char) {
+                            $return .= '&';
+                        }
+                        $state = 1;
+                    } elseif ($char == '&') {
+                        $return .= '&-';
+                    } else {
+                        $return .= $char;
+                    }
+                } elseif (($i == strlen($string) ||
+                            !((ord($char) >= 0x7F)) || (ord($char) <= 0x1F))) {
+                    if ($state != 1) {
+                        if (ord($char) > 64) {
+                            $return .= '';
+                        } else {
+                            $return .= $utf7[ord($char)];
+                        }
+                    }
+                    $return .= '-';
+                    $state   = 0;
+                } else {
+                    switch($state) {
+                    case 1:
+                        $return .= $utf7[ord($char) >> 2];
+                        $residue = (ord($char) & 0x03) << 4;
+                        $state   = 2;
+                        break;
+                    case 2:
+                        $return .= $utf7[$residue | (ord($char) >> 4)];
+                        $residue = (ord($char) & 0x0F) << 2;
+                        $state   = 3;
+                        break;
+                    case 3:
+                        $return .= $utf7[$residue | (ord($char) >> 6)];
+                        $return .= $utf7[ord($char) & 0x3F];
+                        $state   = 1;
+                        break;
+                    }
+                }
+                $i++;
+            }
+            return $return;
+        }
+        return '';
+    }
+
+    /**
+     * Validate an email according to full RFC822 (inclusive human readable part)
+     *
+     * @param string $email   email to validate,
+     *                        will return the address for optional dns validation
+     * @param array  $options email() options
+     *
+     * @return boolean true if valid email, false if not
+     *
+     * @access private
+     */
+    function __emailRFC822(&$email, &$options)
+    {
+        static $address   = null;
+        static $uncomment = null;
+        if (!$address) {
+            // atom        =  1*<any CHAR except specials, SPACE and CTLs>
+            $atom = '[^][()<>@,;:\\".\s\000-\037\177-\377]+\s*';
+            // qtext       =  <any CHAR excepting <">,     ; => may be folded
+            //         "\" & CR, and including linear-white-space>
+            $qtext = '[^"\\\\\r]';
+            // quoted-pair =  "\" CHAR                     ; may quote any char
+            $quoted_pair = '\\\\.';
+            // quoted-string = <"> *(qtext/quoted-pair) <">; Regular qtext or
+            //                                             ;   quoted chars.
+            $quoted_string = '"(?:' . $qtext . '|' . $quoted_pair . ')*"\s*';
+            // word        =  atom / quoted-string
+            $word = '(?:' . $atom . '|' . $quoted_string . ')';
+            // local-part  =  word *("." word)             ; uninterpreted
+            //                                             ; case-preserved
+            $local_part = $word . '(?:\.\s*' . $word . ')*';
+            // dtext       =  <any CHAR excluding "[",     ; => may be folded
+            //         "]", "\" & CR, & including linear-white-space>
+            $dtext = '[^][\\\\\r]';
+            // domain-literal =  "[" *(dtext / quoted-pair) "]"
+            $domain_literal = '\[(?:' . $dtext . '|' . $quoted_pair . ')*\]\s*';
+            // sub-domain  =  domain-ref / domain-literal
+            // domain-ref  =  atom                         ; symbolic reference
+            $sub_domain = '(?:' . $atom . '|' . $domain_literal . ')';
+            // domain      =  sub-domain *("." sub-domain)
+            $domain = $sub_domain . '(?:\.\s*' . $sub_domain . ')*';
+            // addr-spec   =  local-part "@" domain        ; global address
+            $addr_spec = $local_part . '@\s*' . $domain;
+            // route       =  1#("@" domain) ":"           ; path-relative
+            $route = '@' . $domain . '(?:,@\s*' . $domain . ')*:\s*';
+            // route-addr  =  "<" [route] addr-spec ">"
+            $route_addr = '<\s*(?:' . $route . ')?' . $addr_spec . '>\s*';
+            // phrase      =  1*word                       ; Sequence of words
+            $phrase = $word  . '+';
+            // mailbox     =  addr-spec                    ; simple address
+            //             /  phrase route-addr            ; name & addr-spec
+            $mailbox = '(?:' . $addr_spec . '|' . $phrase . $route_addr . ')';
+            // group       =  phrase ":" [#mailbox] ";"
+            $group = $phrase . ':\s*(?:' . $mailbox . '(?:,\s*' . $mailbox . ')*)?;\s*';
+            //     address     =  mailbox                      ; one addressee
+            //                 /  group                        ; named list
+            $address = '/^\s*(?:' . $mailbox . '|' . $group . ')$/';
+
+            $uncomment =
+            '/((?:(?:\\\\"|[^("])*(?:' . $quoted_string .
+                                             ')?)*)((?<!\\\\)\((?:(?2)|.)*?(?<!\\\\)\))/';
+        }
+        // strip comments
+        $email = preg_replace($uncomment, '$1 ', $email);
+        return preg_match($address, $email);
+    }
+
+    /**
+     * Full TLD Validation function
+     *
+     * This function is used to make a much more proficient validation
+     * against all types of official domain names.
+     *
+     * @param string $email   The email address to check.
+     * @param array  $options The options for validation
+     *
+     * @access protected
+     *
+     * @return bool True if validating succeeds
+     */
+    function _fullTLDValidation($email, $options)
+    {
+        $validate = array();
+        if(!empty($options["VALIDATE_ITLD_EMAILS"])) array_push($validate, 'itld');
+        if(!empty($options["VALIDATE_GTLD_EMAILS"])) array_push($validate, 'gtld');
+        if(!empty($options["VALIDATE_CCTLD_EMAILS"])) array_push($validate, 'cctld');
+
+        $self = new Validate;
+
+        $toValidate = array();
+
+        foreach ($validate as $valid) {
+            $tmpVar = '_' . (string)$valid;
+
+            $toValidate[$valid] = $self->{$tmpVar};
+        }
+
+        $e = $self->executeFullEmailValidation($email, $toValidate);
+
+        return $e;
+    }
+    
+    /**
+     * Execute the validation
+     *
+     * This function will execute the full email vs tld
+     * validation using an array of tlds passed to it.
+     *
+     * @param string $email       The email to validate.
+     * @param array  $arrayOfTLDs The array of the TLDs to validate
+     *
+     * @access public
+     *
+     * @return true or false (Depending on if it validates or if it does not)
+     */
+    function executeFullEmailValidation($email, $arrayOfTLDs)
+    {
+        $emailEnding = explode('.', $email);
+        $emailEnding = $emailEnding[count($emailEnding)-1];
+        foreach ($arrayOfTLDs as $validator => $keys) {
+            if (in_array($emailEnding, $keys)) {
+                return true;
+            }
+        }
+        return false;
+    }
+
+    /**
+     * Validate an email
+     *
+     * @param string $email  email to validate
+     * @param mixed  boolean (BC) $check_domain Check or not if the domain exists
+     *              array $options associative array of options
+     *              'check_domain' boolean Check or not if the domain exists
+     *              'use_rfc822' boolean Apply the full RFC822 grammar
+     *
+     * Ex.
+     *  $options = array(
+     *      'check_domain' => 'true',
+     *      'fullTLDValidation' => 'true',
+     *      'use_rfc822' => 'true',
+     *      'VALIDATE_GTLD_EMAILS' => 'true',
+     *      'VALIDATE_CCTLD_EMAILS' => 'true',
+     *      'VALIDATE_ITLD_EMAILS' => 'true',           
+     *      );
+     *
+     * @return boolean true if valid email, false if not
+     *
+     * @access public
+     */
+    function email($email, $options = null)
+    {
+        $check_domain = false;
+        $use_rfc822   = false;
+        if (is_bool($options)) {
+            $check_domain = $options;
+        } elseif (is_array($options)) {
+            extract($options);
+        }
+
+        /**
+         * Check for IDN usage so we can encode the domain as Punycode
+         * before continuing.
+         */
+        $hasIDNA = false;
+
+        if (@include_once('Net/IDNA.php')) {
+            $hasIDNA = true;
+        }
+
+        if ($hasIDNA === true) {
+            if (strpos($email, '@') !== false) {
+                list($name, $domain) = explode('@', $email, 2);
+
+                // Check if the domain contains characters > 127 which means 
+                // it's an idn domain name.
+                $chars = count_chars($domain, 1);
+                if (!empty($chars) && max(array_keys($chars)) > 127) {
+                    $idna   =& Net_IDNA::singleton();
+                    $domain = $idna->encode($domain);
+                }
+
+                $email = "$name@$domain";
+            }
+        }
+        
+        /**
+         * @todo Fix bug here.. even if it passes this, it won't be passing
+         *       The regular expression below
+         */
+        if (isset($fullTLDValidation)) {
+            //$valid = Validate::_fullTLDValidation($email, $fullTLDValidation);
+            $valid = Validate::_fullTLDValidation($email, $options);
+
+            if (!$valid) {
+                return false;
+            }
+        }
+
+        // the base regexp for address
+        $regex = '&^(?:                                               # recipient:
+         ("\s*(?:[^"\f\n\r\t\v\b\s]+\s*)+")|                          #1 quoted name
+         ([-\w!\#\$%\&\'*+~/^`|{}]+(?:\.[-\w!\#\$%\&\'*+~/^`|{}]+)*)) #2 OR dot-atom
+         @(((\[)?                     #3 domain, 4 as IPv4, 5 optionally bracketed
+         (?:(?:(?:(?:25[0-5])|(?:2[0-4][0-9])|(?:[0-1]?[0-9]?[0-9]))\.){3}
+               (?:(?:25[0-5])|(?:2[0-4][0-9])|(?:[0-1]?[0-9]?[0-9]))))(?(5)\])|
+         ((?:[a-z0-9](?:[-a-z0-9]*[a-z0-9])?\.)*[a-z0-9](?:[-a-z0-9]*[a-z0-9])?)  #6 domain as hostname
+         \.((?:([^- ])[-a-z]*[-a-z]))) #7 TLD 
+         $&xi';
+
+        //checks if exists the domain (MX or A)
+        if ($use_rfc822? Validate::__emailRFC822($email, $options) :
+                preg_match($regex, $email)) {
+            if ($check_domain && function_exists('checkdnsrr')) {
+                list ($account, $domain) = explode('@', $email);
+                if (checkdnsrr($domain, 'MX') || checkdnsrr($domain, 'A')) {
+                    return true;
+                }
+                return false;
+            }
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Validate a string using the given format 'format'
+     *
+     * @param string $string  String to validate
+     * @param array  $options Options array where:
+     *                          'format' is the format of the string
+     *                              Ex:VALIDATE_NUM . VALIDATE_ALPHA (see constants)
+     *                          'min_length' minimum length
+     *                          'max_length' maximum length
+     *
+     * @return boolean true if valid string, false if not
+     *
+     * @access public
+     */
+    function string($string, $options)
+    {
+        $format     = null;
+        $min_length = 0;
+        $max_length = 0;
+
+        if (is_array($options)) {
+            extract($options);
+        }
+
+        if ($format && !preg_match("|^[$format]*\$|s", $string)) {
+            return false;
+        }
+
+        if ($min_length && strlen($string) < $min_length) {
+            return false;
+        }
+
+        if ($max_length && strlen($string) > $max_length) {
+            return false;
+        }
+
+        return true;
+    }
+
+    /**
+     * Validate an URI (RFC2396)
+     * This function will validate 'foobarstring' by default, to get it to validate
+     * only http, https, ftp and such you have to pass it in the allowed_schemes
+     * option, like this:
+     * <code>
+     * $options = array('allowed_schemes' => array('http', 'https', 'ftp'))
+     * var_dump(Validate::uri('http://www.example.org', $options));
+     * </code>
+     *
+     * NOTE 1: The rfc2396 normally allows middle '-' in the top domain
+     *         e.g. http://example.co-m should be valid
+     *         However, as '-' is not used in any known TLD, it is invalid
+     * NOTE 2: As double shlashes // are allowed in the path part, only full URIs
+     *         including an authority can be valid, no relative URIs
+     *         the // are mandatory (optionally preceeded by the 'sheme:' )
+     * NOTE 3: the full complience to rfc2396 is not achieved by default
+     *         the characters ';/?:@$,' will not be accepted in the query part
+     *         if not urlencoded, refer to the option "strict'"
+     *
+     * @param string $url     URI to validate
+     * @param array  $options Options used by the validation method.
+     *                          key => type
+     *                          'domain_check' => boolean
+     *                              Whether to check the DNS entry or not
+     *                          'allowed_schemes' => array, list of protocols
+     *                              List of allowed schemes ('http',
+     *                              'ssh+svn', 'mms')
+     *                          'strict' => string the refused chars
+     *                              in query and fragment parts
+     *                              default: ';/?:@$,'
+     *                              empty: accept all rfc2396 foreseen chars
+     *
+     * @return boolean true if valid uri, false if not
+     *
+     * @access public
+     */
+    function uri($url, $options = null)
+    {
+        $strict = ';/?:@$,';
+        $domain_check = false;
+        $allowed_schemes = null;
+        if (is_array($options)) {
+            extract($options);
+        }
+        if (is_array($allowed_schemes) &&
+            in_array("tag", $allowed_schemes)
+        ) {
+            if (strpos($url, "tag:") === 0) {
+                return self::__uriRFC4151($url);
+            }
+        }
+
+        if (preg_match(
+             '&^(?:([a-z][-+.a-z0-9]*):)?                             # 1. scheme
+              (?://                                                   # authority start
+              (?:((?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'();:\&=+$,])*)@)?    # 2. authority-userinfo
+              (?:((?:[a-z0-9](?:[-a-z0-9]*[a-z0-9])?\.)*[a-z](?:[a-z0-9]+)?\.?)  # 3. authority-hostname OR
+              |([0-9]{1,3}(?:\.[0-9]{1,3}){3}))                       # 4. authority-ipv4
+              (?::([0-9]*))?)                                        # 5. authority-port
+              ((?:/(?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'():@\&=+$,;])*)*/?)? # 6. path
+              (?:\?([^#]*))?                                          # 7. query
+              (?:\#((?:%[0-9a-f]{2}|[-a-z0-9_.!~*\'();/?:@\&=+$,])*))? # 8. fragment
+              $&xi', $url, $matches)) {
+            $scheme = isset($matches[1]) ? $matches[1] : '';
+            $authority = isset($matches[3]) ? $matches[3] : '' ;
+            if (is_array($allowed_schemes) &&
+                !in_array($scheme, $allowed_schemes)
+            ) {
+                return false;
+            }
+            if (!empty($matches[4])) {
+                $parts = explode('.', $matches[4]);
+                foreach ($parts as $part) {
+                    if ($part > 255) {
+                        return false;
+                    }
+                }
+            } elseif ($domain_check && function_exists('checkdnsrr')) {
+                if (!checkdnsrr($authority, 'A')) {
+                    return false;
+                }
+            }
+            if ($strict) {
+                $strict = '#[' . preg_quote($strict, '#') . ']#';
+                if ((!empty($matches[7]) && preg_match($strict, $matches[7]))
+                 || (!empty($matches[8]) && preg_match($strict, $matches[8]))) {
+                    return false;
+                }
+            }
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Validate date and times. Note that this method need the Date_Calc class
+     *
+     * @param string $date    Date to validate
+     * @param array  $options array options where :
+     *                          'format' The format of the date (%d-%m-%Y)
+     *                                   or rfc822_compliant
+     *                          'min'    The date has to be greater
+     *                                   than this array($day, $month, $year)
+     *                                   or PEAR::Date object
+     *                          'max'    The date has to be smaller than
+     *                                   this array($day, $month, $year)
+     *                                   or PEAR::Date object
+     *
+     * @return boolean true if valid date/time, false if not
+     *
+     * @access public
+     */
+    function date($date, $options)
+    {
+        $max    = false;
+        $min    = false;
+        $format = '';
+
+        if (is_array($options)) {
+            extract($options);
+        }
+
+        if (strtolower($format) == 'rfc822_compliant') {
+            $preg = '&^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),) \s+
+                    (?:(\d{2})?) \s+
+                    (?:(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)?) \s+
+                    (?:(\d{2}(\d{2})?)?) \s+
+                    (?:(\d{2}?)):(?:(\d{2}?))(:(?:(\d{2}?)))? \s+
+                    (?:[+-]\d{4}|UT|GMT|EST|EDT|CST|CDT|MST|MDT|PST|PDT|[A-IK-Za-ik-z])$&xi';
+
+            if (!preg_match($preg, $date, $matches)) {
+                return false;
+            }
+
+            $year    = (int)$matches[4];
+            $months  = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
+                             'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
+            $month   = array_keys($months, $matches[3]);
+            $month   = (int)$month[0]+1;
+            $day     = (int)$matches[2];
+            $weekday = $matches[1];
+            $hour    = (int)$matches[6];
+            $minute  = (int)$matches[7];
+            isset($matches[9]) ? $second = (int)$matches[9] : $second = 0;
+
+            if ((strlen($year) != 4)        ||
+                ($day    > 31   || $day < 1)||
+                ($hour   > 23)  ||
+                ($minute > 59)  ||
+                ($second > 59)) {
+                    return false;
+            }
+        } else {
+            $date_len = strlen($format);
+            for ($i = 0; $i < $date_len; $i++) {
+                $c = $format{$i};
+                if ($c == '%') {
+                    $next = $format{$i + 1};
+                    switch ($next) {
+                    case 'j':
+                    case 'd':
+                        if ($next == 'j') {
+                            $day = (int)Validate::_substr($date, 1, 2);
+                        } else {
+                            $day = (int)Validate::_substr($date, 0, 2);
+                        }
+                        if ($day < 1 || $day > 31) {
+                            return false;
+                        }
+                        break;
+                    case 'm':
+                    case 'n':
+                        if ($next == 'm') {
+                            $month = (int)Validate::_substr($date, 0, 2);
+                        } else {
+                            $month = (int)Validate::_substr($date, 1, 2);
+                        }
+                        if ($month < 1 || $month > 12) {
+                            return false;
+                        }
+                        break;
+                    case 'Y':
+                    case 'y':
+                        if ($next == 'Y') {
+                            $year = Validate::_substr($date, 4);
+                            $year = (int)$year?$year:'';
+                        } else {
+                            $year = (int)(substr(date('Y'), 0, 2) .
+                                              Validate::_substr($date, 2));
+                        }
+                        if (strlen($year) != 4 || $year < 0 || $year > 9999) {
+                            return false;
+                        }
+                        break;
+                    case 'g':
+                    case 'h':
+                        if ($next == 'g') {
+                            $hour = Validate::_substr($date, 1, 2);
+                        } else {
+                            $hour = Validate::_substr($date, 2);
+                        }
+                        if (!preg_match('/^\d+$/', $hour) || $hour < 0 || $hour > 12) {
+                            return false;
+                        }
+                        break;
+                    case 'G':
+                    case 'H':
+                        if ($next == 'G') {
+                            $hour = Validate::_substr($date, 1, 2);
+                        } else {
+                            $hour = Validate::_substr($date, 2);
+                        }
+                        if (!preg_match('/^\d+$/', $hour) || $hour < 0 || $hour > 24) {
+                            return false;
+                        }
+                        break;
+                    case 's':
+                    case 'i':
+                        $t = Validate::_substr($date, 2);
+                        if (!preg_match('/^\d+$/', $t) || $t < 0 || $t > 59) {
+                            return false;
+                        }
+                        break;
+                    default:
+                        trigger_error("Not supported char `$next' after % in offset " . ($i+2), E_USER_WARNING);
+                    }
+                    $i++;
+                } else {
+                    //literal
+                    if (Validate::_substr($date, 1) != $c) {
+                        return false;
+                    }
+                }
+            }
+        }
+        // there is remaing data, we don't want it
+        if (strlen($date) && (strtolower($format) != 'rfc822_compliant')) {
+            return false;
+        }
+
+        if (isset($day) && isset($month) && isset($year)) {
+            if (!checkdate($month, $day, $year)) {
+                return false;
+            }
+
+            if (strtolower($format) == 'rfc822_compliant') {
+                if ($weekday != date("D", mktime(0, 0, 0, $month, $day, $year))) {
+                    return false;
+                }
+            }
+
+            if ($min) {
+                include_once 'Date/Calc.php';
+                if (is_a($min, 'Date') &&
+                    (Date_Calc::compareDates($day, $month, $year,
+                        $min->getDay(), $min->getMonth(), $min->getYear()) < 0)
+                ) {
+                    return false;
+                } elseif (is_array($min) &&
+                        (Date_Calc::compareDates($day, $month, $year,
+                            $min[0], $min[1], $min[2]) < 0)
+                ) {
+                    return false;
+                }
+            }
+
+            if ($max) {
+                include_once 'Date/Calc.php';
+                if (is_a($max, 'Date') &&
+                    (Date_Calc::compareDates($day, $month, $year,
+                        $max->getDay(), $max->getMonth(), $max->getYear()) > 0)
+                ) {
+                    return false;
+                } elseif (is_array($max) &&
+                        (Date_Calc::compareDates($day, $month, $year,
+                            $max[0], $max[1], $max[2]) > 0)
+                ) {
+                    return false;
+                }
+            }
+        }
+
+        return true;
+    }
+
+    /**
+     * Substr
+     *
+     * @param string &$date Date
+     * @param string $num   Length
+     * @param string $opt   Unknown   
+     *
+     * @access private
+     * @return string
+     */
+    function _substr(&$date, $num, $opt = false)
+    {
+        if ($opt && strlen($date) >= $opt && preg_match('/^[0-9]{'.$opt.'}/', $date, $m)) {
+            $ret = $m[0];
+        } else {
+            $ret = substr($date, 0, $num);
+        }
+        $date = substr($date, strlen($ret));
+        return $ret;
+    }
+
+    function _modf($val, $div)
+    {
+        if (function_exists('bcmod')) {
+            return bcmod($val, $div);
+        } elseif (function_exists('fmod')) {
+            return fmod($val, $div);
+        }
+        $r = $val / $div;
+        $i = intval($r);
+        return intval($val - $i * $div + .1);
+    }
+
+    /**
+     * Calculates sum of product of number digits with weights
+     *
+     * @param string $number  number string
+     * @param array  $weights reference to array of weights
+     *
+     * @access protected
+     *
+     * @return int returns product of number digits with weights
+     */
+    function _multWeights($number, &$weights)
+    {
+        if (!is_array($weights)) {
+            return -1;
+        }
+        $sum = 0;
+
+        $count = min(count($weights), strlen($number));
+        if ($count == 0) { // empty string or weights array
+            return -1;
+        }
+        for ($i = 0; $i < $count; ++$i) {
+            $sum += intval(substr($number, $i, 1)) * $weights[$i];
+        }
+
+        return $sum;
+    }
+
+    /**
+     * Calculates control digit for a given number
+     *
+     * @param string $number     number string
+     * @param array  $weights    reference to array of weights
+     * @param int    $modulo     (optionsl) number
+     * @param int    $subtract   (optional) number
+     * @param bool   $allow_high (optional) true if function can return number higher than 10
+     *
+     * @access protected
+     *
+     * @return  int -1 calculated control number is returned
+     */
+    function _getControlNumber($number, &$weights, $modulo = 10, $subtract = 0, $allow_high = false)
+    {
+        // calc sum
+        $sum = Validate::_multWeights($number, $weights);
+        if ($sum == -1) {
+            return -1;
+        }
+        $mod = Validate::_modf($sum, $modulo);  // calculate control digit
+
+        if ($subtract > $mod && $mod > 0) {
+            $mod = $subtract - $mod;
+        }
+        if ($allow_high === false) {
+            $mod %= 10;           // change 10 to zero
+        }
+        return $mod;
+    }
+
+    /**
+     * Validates a number
+     *
+     * @param string $number   number to validate
+     * @param array  $weights  reference to array of weights
+     * @param int    $modulo   (optional) number
+     * @param int    $subtract (optional) number
+     *
+     * @access protected
+     *
+     * @return  bool true if valid, false if not
+     */
+    function _checkControlNumber($number, &$weights, $modulo = 10, $subtract = 0)
+    {
+        if (strlen($number) < count($weights)) {
+            return false;
+        }
+        $target_digit  = substr($number, count($weights), 1);
+        $control_digit = Validate::_getControlNumber($number, $weights, $modulo, $subtract, $modulo > 10);
+
+        if ($control_digit == -1) {
+            return false;
+        }
+        if ($target_digit === 'X' && $control_digit == 10) {
+            return true;
+        }
+        if ($control_digit != $target_digit) {
+            return false;
+        }
+        return true;
+    }
+
+    /**
+     * Bulk data validation for data introduced in the form of an
+     * assoc array in the form $var_name => $value.
+     * Can be used on any of Validate subpackages
+     *
+     * @param array   $data     Ex: array('name' => 'toto', 'email' => 'toto@thing.info');
+     * @param array   $val_type Contains the validation type and all parameters used in.
+     *                          'val_type' is not optional
+     *                          others validations properties must have the same name as the function
+     *                          parameters.
+     *                          Ex: array('toto'=>array('type'=>'string','format'='toto@thing.info','min_length'=>5));
+     * @param boolean $remove   if set, the elements not listed in data will be removed
+     *
+     * @return array   value name => true|false    the value name comes from the data key
+     *
+     * @access public
+     */
+    function multiple(&$data, &$val_type, $remove = false)
+    {
+        $keys  = array_keys($data);
+        $valid = array();
+
+        foreach ($keys as $var_name) {
+            if (!isset($val_type[$var_name])) {
+                if ($remove) {
+                    unset($data[$var_name]);
+                }
+                continue;
+            }
+            $opt       = $val_type[$var_name];
+            $methods   = get_class_methods('Validate');
+            $val2check = $data[$var_name];
+            // core validation method
+            if (in_array(strtolower($opt['type']), $methods)) {
+                //$opt[$opt['type']] = $data[$var_name];
+                $method = $opt['type'];
+                unset($opt['type']);
+
+                if (sizeof($opt) == 1 && is_array(reset($opt))) {
+                    $opt = array_pop($opt);
+                }
+                $valid[$var_name] = call_user_func(array('Validate', $method), $val2check, $opt);
+
+                /**
+                 * external validation method in the form:
+                 * "<class name><underscore><method name>"
+                 * Ex: us_ssn will include class Validate/US.php and call method ssn()
+                 */
+            } elseif (strpos($opt['type'], '_') !== false) {
+                $validateType = explode('_', $opt['type']);
+                $method       = array_pop($validateType);
+                $class        = implode('_', $validateType);
+                $classPath    = str_replace('_', DIRECTORY_SEPARATOR, $class);
+                $class        = 'Validate_' . $class;
+                if (!@include_once "Validate/$classPath.php") {
+                    trigger_error("$class isn't installed or you may have some permissoin issues", E_USER_ERROR);
+                }
+
+                $ce = substr(phpversion(), 0, 1) > 4 ?
+                    class_exists($class, false) : class_exists($class);
+                if (!$ce ||
+                    !in_array($method, get_class_methods($class))
+                ) {
+                    trigger_error("Invalid validation type $class::$method",
+                        E_USER_WARNING);
+                    continue;
+                }
+                unset($opt['type']);
+                if (sizeof($opt) == 1) {
+                    $opt = array_pop($opt);
+                }
+                $valid[$var_name] = call_user_func(array($class, $method),
+                    $data[$var_name], $opt);
+            } else {
+                trigger_error("Invalid validation type {$opt['type']}",
+                    E_USER_WARNING);
+            }
+        }
+        return $valid;
+    }
+}
+