File indexing completed on 2024-12-22 05:36:41
0001 <?php 0002 0003 /** 0004 * Zend Framework 0005 * 0006 * LICENSE 0007 * 0008 * This source file is subject to the new BSD license that is bundled 0009 * with this package in the file LICENSE.txt. 0010 * It is also available through the world-wide-web at this URL: 0011 * http://framework.zend.com/license/new-bsd 0012 * If you did not receive a copy of the license and are unable to 0013 * obtain it through the world-wide-web, please send an email 0014 * to license@zend.com so we can send you a copy immediately. 0015 * 0016 * @category Zend 0017 * @package Zend_Filter 0018 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0019 * @license http://framework.zend.com/license/new-bsd New BSD License 0020 * @version $Id$ 0021 */ 0022 0023 0024 /** 0025 * @see Zend_Filter_Interface 0026 */ 0027 // require_once 'Zend/Filter/Interface.php'; 0028 0029 0030 /** 0031 * @category Zend 0032 * @package Zend_Filter 0033 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0034 * @license http://framework.zend.com/license/new-bsd New BSD License 0035 */ 0036 class Zend_Filter_Digits implements Zend_Filter_Interface 0037 { 0038 /** 0039 * Is PCRE is compiled with UTF-8 and Unicode support 0040 * 0041 * @var mixed 0042 **/ 0043 protected static $_unicodeEnabled; 0044 0045 /** 0046 * Class constructor 0047 * 0048 * Checks if PCRE is compiled with UTF-8 and Unicode support 0049 * 0050 * @return void 0051 */ 0052 public function __construct() 0053 { 0054 if (null === self::$_unicodeEnabled) { 0055 self::$_unicodeEnabled = (@preg_match('/\pL/u', 'a')) ? true : false; 0056 } 0057 } 0058 0059 /** 0060 * Defined by Zend_Filter_Interface 0061 * 0062 * Returns the string $value, removing all but digit characters 0063 * 0064 * @param string $value 0065 * @return string 0066 */ 0067 public function filter($value) 0068 { 0069 if (!self::$_unicodeEnabled) { 0070 // POSIX named classes are not supported, use alternative 0-9 match 0071 $pattern = '/[^0-9]/'; 0072 } else if (extension_loaded('mbstring')) { 0073 // Filter for the value with mbstring 0074 $pattern = '/[^[:digit:]]/'; 0075 } else { 0076 // Filter for the value without mbstring 0077 $pattern = '/[\p{^N}]/'; 0078 } 0079 0080 return preg_replace($pattern, '', (string) $value); 0081 } 0082 }