php-src/ext/date/tests/bug65371.phpt
Nikita Popov 4b3615a33f Deprecate strftime() and gmstrftime()
These are deprecated in favor of date()/DateTime::format() (for
locale-indendent formatting) and IntlDateFormatter::format()
(for locale-dependent formatting).

Part of https://wiki.php.net/rfc/deprecations_php_8_1.
2021-07-14 09:38:43 +02:00

28 lines
409 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 in %s on line %d
e38182
Deprecated: Function strftime() is deprecated in %s on line %d
e38182