Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-i18n/src/Validator/Int.php
Строк: 133
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace ZendI18nValidator;

use 
Locale;
use 
NumberFormatter;
use 
Traversable;
use 
ZendI18nException as I18nException;
use 
ZendStdlibArrayUtils;
use 
ZendValidatorAbstractValidator;
use 
ZendValidatorException;

class 
Int extends AbstractValidator
{
    const 
INVALID 'intInvalid';
    const 
NOT_INT 'notInt';

    
/**
     * @var array
     */
    
protected $messageTemplates = array(
        
self::INVALID => "Invalid type given. String or integer expected",
        
self::NOT_INT => "The input does not appear to be an integer",
    );

    
/**
     * Optional locale
     *
     * @var string|null
     */
    
protected $locale;

    
/**
     * Constructor for the integer validator
     *
     * @param  array|Traversable $options
     * @throws ExceptionExtensionNotLoadedException if ext/intl is not present
     */
    
public function __construct($options = array())
    {
        if (!
extension_loaded('intl')) {
            throw new 
I18nExceptionExtensionNotLoadedException(sprintf(
                
'%s component requires the intl PHP extension',
                
__NAMESPACE__
            
));
        }

        if (
$options instanceof Traversable) {
            
$options ArrayUtils::iteratorToArray($options);
        }

        if (
array_key_exists('locale'$options)) {
            
$this->setLocale($options['locale']);
        }

        
parent::__construct($options);
    }

    
/**
     * Returns the set locale
     */
    
public function getLocale()
    {
        if (
null === $this->locale) {
            
$this->locale Locale::getDefault();
        }
        return 
$this->locale;
    }

    
/**
     * Sets the locale to use
     *
     * @param  string $locale
     * @return Int
     */
    
public function setLocale($locale)
    {
        
$this->locale $locale;
        return 
$this;
    }

    
/**
     * Returns true if and only if $value is a valid integer
     *
     * @param  string|int $value
     * @return bool
     * @throws ExceptionInvalidArgumentException
     */
    
public function isValid($value)
    {
        if (!
is_string($value) && !is_int($value) && !is_float($value)) {
            
$this->error(self::INVALID);
            return 
false;
        }

        if (
is_int($value)) {
            return 
true;
        }

        
$this->setValue($value);

        
$locale $this->getLocale();
        
$format = new NumberFormatter($localeNumberFormatter::DECIMAL);
        if (
intl_is_failure($format->getErrorCode())) {
            throw new 
ExceptionInvalidArgumentException("Invalid locale string given");
        }

        
$parsedInt $format->parse($valueNumberFormatter::TYPE_INT64);
        if (
intl_is_failure($format->getErrorCode())) {
            
$this->error(self::NOT_INT);
            return 
false;
        }

        
$decimalSep  $format->getSymbol(NumberFormatter::DECIMAL_SEPARATOR_SYMBOL);
        
$groupingSep $format->getSymbol(NumberFormatter::GROUPING_SEPARATOR_SYMBOL);

        
$valueFiltered str_replace($groupingSep''$value);
        
$valueFiltered str_replace($decimalSep'.'$valueFiltered);

        if (
strval($parsedInt) !== $valueFiltered) {
            
$this->error(self::NOT_INT);
            return 
false;
        }

        return 
true;
    }
}
Онлайн: 1
Реклама