import v1.1.0_beta1 | 2009-08-21

This commit is contained in:
2019-07-17 22:16:19 +02:00
parent 2c1152f0d3
commit 8dee6b1a10
2306 changed files with 251360 additions and 23428 deletions

View File

@ -1,5 +1,4 @@
<?php
/**
* Zend Framework
*
@ -17,15 +16,18 @@
* @package Zend_Validate
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Float.php 8714 2008-03-09 20:03:45Z thomas $
* @version $Id: Float.php 13375 2008-12-19 14:16:40Z thomas $
*/
/**
* @see Zend_Validate_Abstract
*/
require_once 'Zend/Validate/Abstract.php';
/**
* @see Zend_Locale_Format
*/
require_once 'Zend/Locale/Format.php';
/**
* @category Zend
@ -45,6 +47,38 @@ class Zend_Validate_Float extends Zend_Validate_Abstract
self::NOT_FLOAT => "'%value%' does not appear to be a float"
);
protected $_locale;
/**
* Constructor for the float validator
*
* @param string|Zend_Locale $locale
*/
public function __construct($locale = null)
{
$this->setLocale($locale);
}
/**
* Returns the set locale
*/
public function getLocale()
{
return $this->_locale;
}
/**
* Sets the locale to use
*
* @param string|Zend_Locale $locale
*/
public function setLocale($locale = null)
{
require_once 'Zend/Locale.php';
$this->_locale = Zend_Locale::findLocale($locale);
return $this;
}
/**
* Defined by Zend_Validate_Interface
*
@ -59,17 +93,16 @@ class Zend_Validate_Float extends Zend_Validate_Abstract
$this->_setValue($valueString);
$locale = localeconv();
$valueFiltered = str_replace($locale['thousands_sep'], '', $valueString);
$valueFiltered = str_replace($locale['decimal_point'], '.', $valueFiltered);
if (strval(floatval($valueFiltered)) != $valueFiltered) {
try {
if (!Zend_Locale_Format::isFloat($value, array('locale' => $this->_locale))) {
$this->_error();
return false;
}
} catch (Zend_Locale_Exception $e) {
$this->_error();
return false;
}
return true;
}
}