日期时间格式
我想在 php 中将变量设置为特定日期,就像这样。如何在 php 中编写这个函数? jsmyStartDate = new Date('4 月 1 日,'+curYear+' 1:59:59');
i want to set a variable to a particular date like this in php..how to write this function in php? jsmyStartDate = new Date('April 1, '+curYear+' 1:59:59');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的意思是
或者为什么不只是
date('r');
do you mean
or why not just
date('r');
看看 php 手册中的 date ,你就差不多了正确的方法(只需将
R
替换为eO
;) )。看起来您希望日期采用 RFC2822 格式,在这种情况下,您也可以简单地使用
date("r")
。take a look at date in the php manual, you're almost on the right way (just replace the
R
witheO
;) ).it looks like you want the date to be in RFC2822-format, in this case you could also simply use
date("r")
.为什么这被否决了?它很简单,但仍然......
使用
date("DM j Y g:i:s \G\M\TO");
(最后的大 o )Why is this voted down? Its simple but still...
use
date("D M j Y g:i:s \G\M\TO");
(larg o at the end)在 php.net 网站上找到了这个 - http://php.net/manual/en/ function.date.php 就在底部
试试这样的东西?
Found this on the php.net site - http://php.net/manual/en/function.date.php right at the bottom
Try something like this?