php-src/ext/date/tests/bug65371.phpt

28 lines
409 B
Plaintext
Raw Normal View History

2014-01-09 14:23:49 +00:00
--TEST--
Testing bug #65371
--INI--
date.timezone=Europe/Berlin
--FILE--
<?php
function p($str)
{
2014-01-09 14:27:26 +00:00
echo $str, "\n";
echo strftime($str), "\n";
echo bin2hex($str), "\n";
2014-01-09 14:23:49 +00:00
echo bin2hex(strftime($str));
}
setlocale(LC_ALL, 'C');
p('あ');
?>
--EXPECTF--
2014-01-09 14:23:49 +00:00
Deprecated: Function strftime() is deprecated in %s on line %d
2014-01-09 14:23:49 +00:00
e38182
Deprecated: Function strftime() is deprecated in %s on line %d
2014-01-09 14:23:49 +00:00
e38182