当前位置:Gxlcms > PHP教程 > php strftime 乱码怎么办

php strftime 乱码怎么办

时间:2021-07-01 10:21:17 帮助过:13人阅读

php strftime乱码的解决办法:1、使用GBK编码来解释输出;2、在调用strftime前,把系统时间设置成想要的编码格式。

本文操作环境:windows7系统、PHP7.1版,DELL G3电脑

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视频教程》

以上就是php strftime 乱码怎么办的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行