PHP 字符串到时间
如何将“00:00:00.000 GMT Mon Nov 22 2010”转换为更用户友好的格式。
How to convert "00:00:00.000 GMT Mon Nov 22 2010" to more user friendly format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可以使用这些 PHP 函数:
http://php.net/manual/en/function。 strtotime.php
http://php.net/manual/en/function. date.php
strtotime 会将您当前的时间戳转换为 unix 时间戳。
然后,您可以使用 date() 根据需要格式化该 UNIX 时间戳。
You could use these PHP functions:
http://php.net/manual/en/function.strtotime.php
http://php.net/manual/en/function.date.php
strtotime will convert your current to a unix timestamp.
You can then format that unix time stamp however you want, using date().
为什么不使用 strtotime ?!
Why not with strtotime?!
您可能还会发现这些有用:
在 CakePHP 中,TimeHelper http://book.cakephp.org/view /1470/时间:
You might also find these useful:
And in CakePHP the TimeHelper http://book.cakephp.org/view/1470/Time:
试试这个:
Try this:
首先使用 strtotime 将字符串转换为日期时间:
strtotime
然后使用 sprintf 格式化日期时间:
sprintf
First convert the string to a datetime using strtotime:
strtotime
and then format the datetime anyway you want using sprintf:
sprintf
使用 strtotime 函数:
Use strtotime function:
检查 php 手册并尝试 strtotime 和 date 函数
check on php manual and try strtotime and date function