首页 > 代码库 > PHP strftime()函数输出乱码问题

PHP strftime()函数输出乱码问题

直接调用strftime()
strftime(time_buf, 80, "%a, %e %b %G %T %z", p_stime);
 输出为 
??, 18 12?? 2015 11ê±19·?36?? +0800
原因

strftime()输出时是按照系统设置的编码格式输出的,和系统不匹配,
两个解决办法:
一、需要设置显示这些文字的工具使用 GBK 编码来解释该输出。
二、调用strftime前,把系统时间设置成想要的编码格式,例如setlocale(LC_TIME, ‘en_US.UTF-8‘)

PHP strftime()函数输出乱码问题