bug65371.phpt 409 B

123456789101112131415161718192021222324252627
  1. --TEST--
  2. Testing bug #65371
  3. --INI--
  4. date.timezone=Europe/Berlin
  5. --FILE--
  6. <?php
  7. function p($str)
  8. {
  9. echo $str, "\n";
  10. echo strftime($str), "\n";
  11. echo bin2hex($str), "\n";
  12. echo bin2hex(strftime($str));
  13. }
  14. setlocale(LC_ALL, 'C');
  15. p('あ');
  16. ?>
  17. --EXPECTF--
  18. Deprecated: Function strftime() is deprecated in %s on line %d
  19. e38182
  20. Deprecated: Function strftime() is deprecated in %s on line %d
  21. e38182