Formatter.php 12.3 KB
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\i18n;

use Yii;
use IntlDateFormatter;
use NumberFormatter;
use DateTime;
use yii\base\InvalidConfigException;

/**
 * Formatter is the localized version of [[\yii\base\Formatter]].
 *
 * Formatter requires the PHP "intl" extension to be installed. Formatter supports localized
 * formatting of date, time and numbers, based on the current [[locale]].
 *
22 23 24 25 26 27 28 29 30
 * This Formatter can replace the `formatter` application component that is configured by default.
 * To do so, add the following to your application config under `components`:
 *
 * ```php
 * 'formatter' => [
 *     'class' => 'yii\i18n\Formatter',
 * ]
 * ```
 *
Qiang Xue committed
31 32 33 34 35 36 37 38 39 40
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class Formatter extends \yii\base\Formatter
{
	/**
	 * @var string the locale ID that is used to localize the date and number formatting.
	 * If not set, [[\yii\base\Application::language]] will be used.
	 */
	public $locale;
41 42 43 44 45 46 47 48 49
	/**
	 * @var string|\IntlTimeZone|\DateTimeZone the timezone to use for formatting time and date values.
	 * This can be any value that may be passed to [date_default_timezone_set()](http://www.php.net/manual/en/function.date-default-timezone-set.php)
	 * e.g. `UTC`, `Europe/Berlin` or `America/Chicago`.
	 * Refer to the [php manual](http://www.php.net/manual/en/timezones.php) for available timezones.
	 * This can also be an IntlTimeZone or a DateTimeZone object.
	 * If not set, [[\yii\base\Application::timezone]] will be used.
	 */
	public $timeZone;
Qiang Xue committed
50
	/**
Qiang Xue committed
51 52 53
	 * @var string the default format string to be used to format a date.
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
Qiang Xue committed
54 55 56
	 */
	public $dateFormat = 'short';
	/**
Qiang Xue committed
57 58 59
	 * @var string the default format string to be used to format a time.
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
Qiang Xue committed
60 61 62
	 */
	public $timeFormat = 'short';
	/**
Qiang Xue committed
63 64 65
	 * @var string the default format string to be used to format a date and time.
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
Qiang Xue committed
66 67 68 69
	 */
	public $datetimeFormat = 'short';
	/**
	 * @var array the options to be set for the NumberFormatter objects. Please refer to
Qiang Xue committed
70 71 72
	 * [PHP manual](http://php.net/manual/en/class.numberformatter.php#intl.numberformatter-constants.unumberformatattribute)
	 * for the possible options. This property is used by [[createNumberFormatter]] when
	 * creating a new number formatter to format decimals, currencies, etc.
Qiang Xue committed
73
	 */
Alexander Makarov committed
74
	public $numberFormatOptions = [];
75 76 77 78 79 80 81 82 83 84
	/**
	 * @var string the character displayed as the decimal point when formatting a number.
	 * If not set, the decimal separator corresponding to [[locale]] will be used.
	 */
	public $decimalSeparator;
	/**
	 * @var string the character displayed as the thousands separator character when formatting a number.
	 * If not set, the thousand separator corresponding to [[locale]] will be used.
	 */
	public $thousandSeparator;
Qiang Xue committed
85 86 87 88 89 90 91 92 93 94 95


	/**
	 * Initializes the component.
	 * This method will check if the "intl" PHP extension is installed and set the
	 * default value of [[locale]].
	 * @throws InvalidConfigException if the "intl" PHP extension is not installed.
	 */
	public function init()
	{
		if (!extension_loaded('intl')) {
96
			throw new InvalidConfigException('The "intl" PHP extension is not installed. It is required to format data values in localized formats.');
Qiang Xue committed
97 98 99 100
		}
		if ($this->locale === null) {
			$this->locale = Yii::$app->language;
		}
101 102 103
		if ($this->timeZone === null) {
			$this->timeZone = Yii::$app->timeZone;
		}
104 105 106
		if ($this->decimalSeparator === null || $this->thousandSeparator === null) {
			$formatter = new NumberFormatter($this->locale, NumberFormatter::DECIMAL);
			if ($this->decimalSeparator === null) {
Qiang Xue committed
107
				$this->decimalSeparator = $formatter->getSymbol(NumberFormatter::DECIMAL_SEPARATOR_SYMBOL);
108 109
			}
			if ($this->thousandSeparator === null) {
Qiang Xue committed
110
				$this->thousandSeparator = $formatter->getSymbol(NumberFormatter::GROUPING_SEPARATOR_SYMBOL);
111 112 113
			}
		}

Qiang Xue committed
114 115 116
		parent::init();
	}

Alexander Makarov committed
117
	private $_dateFormats = [
Qiang Xue committed
118 119 120 121
		'short' => IntlDateFormatter::SHORT,
		'medium' => IntlDateFormatter::MEDIUM,
		'long' => IntlDateFormatter::LONG,
		'full' => IntlDateFormatter::FULL,
Alexander Makarov committed
122
	];
Qiang Xue committed
123 124 125 126 127 128

	/**
	 * Formats the value as a date.
	 * @param integer|string|DateTime $value the value to be formatted. The following
	 * types of value are supported:
	 *
129
	 * - an integer representing a UNIX timestamp
Qiang Xue committed
130 131 132 133
	 * - a string that can be parsed into a UNIX timestamp via `strtotime()`
	 * - a PHP DateTime object
	 *
	 * @param string $format the format used to convert the value into a date string.
Qiang Xue committed
134 135 136 137 138
	 * If null, [[dateFormat]] will be used.
	 *
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
	 *
Qiang Xue committed
139
	 * @return string the formatted result
140
	 * @throws InvalidConfigException when formatting fails due to invalid parameters.
Qiang Xue committed
141 142 143 144
	 * @see dateFormat
	 */
	public function asDate($value, $format = null)
	{
145 146 147
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
148 149 150 151 152
		$value = $this->normalizeDatetimeValue($value);
		if ($format === null) {
			$format = $this->dateFormat;
		}
		if (isset($this->_dateFormats[$format])) {
153
			$formatter = new IntlDateFormatter($this->locale, $this->_dateFormats[$format], IntlDateFormatter::NONE, $this->timeZone);
Qiang Xue committed
154
		} else {
155
			$formatter = new IntlDateFormatter($this->locale, IntlDateFormatter::NONE, IntlDateFormatter::NONE, $this->timeZone);
156 157 158 159 160 161
			if ($formatter !== null) {
				$formatter->setPattern($format);
			}
		}
		if ($formatter === null) {
			throw new InvalidConfigException(intl_get_error_message());
Qiang Xue committed
162 163 164 165 166 167 168 169 170
		}
		return $formatter->format($value);
	}

	/**
	 * Formats the value as a time.
	 * @param integer|string|DateTime $value the value to be formatted. The following
	 * types of value are supported:
	 *
171
	 * - an integer representing a UNIX timestamp
Qiang Xue committed
172 173 174 175
	 * - a string that can be parsed into a UNIX timestamp via `strtotime()`
	 * - a PHP DateTime object
	 *
	 * @param string $format the format used to convert the value into a date string.
Qiang Xue committed
176 177 178 179 180
	 * If null, [[dateFormat]] will be used.
	 *
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
	 *
Qiang Xue committed
181
	 * @return string the formatted result
182
	 * @throws InvalidConfigException when formatting fails due to invalid parameters.
Qiang Xue committed
183 184 185 186
	 * @see timeFormat
	 */
	public function asTime($value, $format = null)
	{
187 188 189
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
190 191 192 193 194
		$value = $this->normalizeDatetimeValue($value);
		if ($format === null) {
			$format = $this->timeFormat;
		}
		if (isset($this->_dateFormats[$format])) {
195
			$formatter = new IntlDateFormatter($this->locale, IntlDateFormatter::NONE, $this->_dateFormats[$format], $this->timeZone);
Qiang Xue committed
196
		} else {
197
			$formatter = new IntlDateFormatter($this->locale, IntlDateFormatter::NONE, IntlDateFormatter::NONE, $this->timeZone);
198 199 200 201 202 203
			if ($formatter !== null) {
				$formatter->setPattern($format);
			}
		}
		if ($formatter === null) {
			throw new InvalidConfigException(intl_get_error_message());
Qiang Xue committed
204 205 206 207 208 209 210 211 212
		}
		return $formatter->format($value);
	}

	/**
	 * Formats the value as a datetime.
	 * @param integer|string|DateTime $value the value to be formatted. The following
	 * types of value are supported:
	 *
213
	 * - an integer representing a UNIX timestamp
Qiang Xue committed
214 215 216 217
	 * - a string that can be parsed into a UNIX timestamp via `strtotime()`
	 * - a PHP DateTime object
	 *
	 * @param string $format the format used to convert the value into a date string.
Qiang Xue committed
218 219 220 221 222
	 * If null, [[dateFormat]] will be used.
	 *
	 * This can be "short", "medium", "long", or "full", which represents a preset format of different lengths.
	 * It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime).
	 *
Qiang Xue committed
223
	 * @return string the formatted result
224
	 * @throws InvalidConfigException when formatting fails due to invalid parameters.
Qiang Xue committed
225 226 227 228
	 * @see datetimeFormat
	 */
	public function asDatetime($value, $format = null)
	{
229 230 231
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
232 233 234 235 236
		$value = $this->normalizeDatetimeValue($value);
		if ($format === null) {
			$format = $this->datetimeFormat;
		}
		if (isset($this->_dateFormats[$format])) {
237
			$formatter = new IntlDateFormatter($this->locale, $this->_dateFormats[$format], $this->_dateFormats[$format], $this->timeZone);
Qiang Xue committed
238
		} else {
239
			$formatter = new IntlDateFormatter($this->locale, IntlDateFormatter::NONE, IntlDateFormatter::NONE, $this->timeZone);
240 241 242 243 244 245
			if ($formatter !== null) {
				$formatter->setPattern($format);
			}
		}
		if ($formatter === null) {
			throw new InvalidConfigException(intl_get_error_message());
Qiang Xue committed
246 247 248 249 250 251 252 253 254 255 256 257 258
		}
		return $formatter->format($value);
	}

	/**
	 * Formats the value as a decimal number.
	 * @param mixed $value the value to be formatted
	 * @param string $format the format to be used. Please refer to [ICU manual](http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#_details)
	 * for details on how to specify a format.
	 * @return string the formatted result.
	 */
	public function asDecimal($value, $format = null)
	{
259 260 261
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
262
		return $this->createNumberFormatter(NumberFormatter::DECIMAL, $format)->format($value);
Qiang Xue committed
263 264 265 266 267 268 269 270 271 272 273 274
	}

	/**
	 * Formats the value as a currency number.
	 * @param mixed $value the value to be formatted
	 * @param string $currency the 3-letter ISO 4217 currency code indicating the currency to use.
	 * @param string $format the format to be used. Please refer to [ICU manual](http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#_details)
	 * for details on how to specify a format.
	 * @return string the formatted result.
	 */
	public function asCurrency($value, $currency = 'USD', $format = null)
	{
275 276 277
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
278
		return $this->createNumberFormatter(NumberFormatter::CURRENCY, $format)->formatCurrency($value, $currency);
Qiang Xue committed
279 280 281 282 283 284 285 286 287 288 289
	}

	/**
	 * Formats the value as a percent number.
	 * @param mixed $value the value to be formatted
	 * @param string $format the format to be used. Please refer to [ICU manual](http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#_details)
	 * for details on how to specify a format.
	 * @return string the formatted result.
	 */
	public function asPercent($value, $format = null)
	{
290 291 292
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
293
		return $this->createNumberFormatter(NumberFormatter::PERCENT, $format)->format($value);
Qiang Xue committed
294 295 296 297 298 299 300 301 302 303 304
	}

	/**
	 * Formats the value as a scientific number.
	 * @param mixed $value the value to be formatted
	 * @param string $format the format to be used. Please refer to [ICU manual](http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#_details)
	 * for details on how to specify a format.
	 * @return string the formatted result.
	 */
	public function asScientific($value, $format = null)
	{
305 306 307
		if ($value === null) {
			return $this->nullDisplay;
		}
Qiang Xue committed
308
		return $this->createNumberFormatter(NumberFormatter::SCIENTIFIC, $format)->format($value);
Qiang Xue committed
309 310 311 312 313
	}

	/**
	 * Creates a number formatter based on the given type and format.
	 * @param integer $type the type of the number formatter
Qiang Xue committed
314
	 * @param string $format the format to be used.  Please refer to [ICU manual](http://www.icu-project.org/apiref/icu4c/classDecimalFormat.html#_details)
Qiang Xue committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
	 * @return NumberFormatter the created formatter instance
	 */
	protected function createNumberFormatter($type, $format)
	{
		$formatter = new NumberFormatter($this->locale, $type);
		if ($format !== null) {
			$formatter->setPattern($format);
		}
		if (!empty($this->numberFormatOptions)) {
			foreach ($this->numberFormatOptions as $name => $attribute) {
				$formatter->setAttribute($name, $attribute);
			}
		}
		return $formatter;
	}
}