mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
15 lines
356 B
PHP
15 lines
356 B
PHP
--TEST--
|
|
IntlDatePatternGenerator::getBestPattern(): errors
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
$dtpg = new IntlDatePatternGenerator();
|
|
var_dump($dtpg->getBestPattern("jjmm\x80"));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: IntlDatePatternGenerator::getBestPattern(): Skeleton is not a valid UTF-8 string in %s on line %d
|
|
bool(false)
|