You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
605 B

--TEST--
Test IntlNumberRangeFormatter cannot be cloned
--EXTENSIONS--
intl
--SKIPIF--
<?php
if (version_compare(INTL_ICU_VERSION, '63.0') < 0) {
die('skip for ICU < 63.0');
}
?>
--FILE--
<?php
$formatter = IntlNumberRangeFormatter::createFromSkeleton(
'measure-unit/length-meter',
'en_US',
IntlNumberRangeFormatter::COLLAPSE_AUTO,
IntlNumberRangeFormatter::IDENTITY_FALLBACK_SINGLE_VALUE
);
try {
$clonedFormatter = clone $formatter;
} catch(Error $error) {
echo $error->getMessage();
}
?>
--EXPECT--
Trying to clone an uncloneable object of class IntlNumberRangeFormatter