mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Co-authored-by: Gina Peter Banyard <girgias@php.net> Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
28 lines
511 B
PHP
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
|