mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
84b6152842
`intl_zval_to_millis()` needs to cater to references. Closes GH-6707.
17 lines
474 B
PHP
17 lines
474 B
PHP
--TEST--
|
|
Bug #80763 (msgfmt_format() does not accept DateTime references)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl')) die('skip intl extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$today = new DateTime('2021-02-17 12:00:00');
|
|
$formatter = new \MessageFormatter('en_US', 'Today is {today, date, full}.');
|
|
$params = ['today' => $today];
|
|
array_walk($params, fn() => 1);
|
|
var_dump($formatter->format($params));
|
|
?>
|
|
--EXPECT--
|
|
string(38) "Today is Wednesday, February 17, 2021."
|