1--TEST-- 2Testing bug #65371 3--INI-- 4date.timezone=Europe/Berlin 5--FILE-- 6<?php 7 8function p($str) 9{ 10 echo $str, "\n"; 11 echo strftime($str), "\n"; 12 echo bin2hex($str), "\n"; 13 echo bin2hex(strftime($str)); 14} 15 16setlocale(LC_ALL, 'C'); 17p('あ'); 18--EXPECT-- 19あ 20あ 21e38182 22e38182 23