1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/date/tests/bug65371.phpt
2024-07-10 16:47:31 +02:00

28 lines
511 B
PHP

--TEST--
Testing bug #65371
--INI--
date.timezone=Europe/Berlin
--FILE--
<?php
function p($str)
{
echo $str, "\n";
echo strftime($str), "\n";
echo bin2hex($str), "\n";
echo bin2hex(strftime($str));
}
setlocale(LC_ALL, 'C');
p('あ');
?>
--EXPECTF--
Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in %s on line %d
e38182
Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in %s on line %d
e38182