mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
17 lines
452 B
PHP
17 lines
452 B
PHP
--TEST--
|
|
Bug #62081: IntlDateFormatter leaks memory if called twice
|
|
--INI--
|
|
date.timezone=Atlantic/Azores
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set('intl.error_level', E_WARNING);
|
|
$x = new IntlDateFormatter('en', 1, 1);
|
|
var_dump($x->__construct('en', 1, 1));
|
|
--EXPECTF--
|
|
Warning: IntlDateFormatter::__construct(): datefmt_create: cannot call constructor twice in %s on line %d
|
|
NULL
|