如何以 mm/dd/yy 格式显示数字日期
现在,我是用户的月、日和年,分为三个标题为月、日、年的数据库字段。
当我显示它时,我正在做:
$month = $row['month'];
$day = $row['day'];
$year = $row['year'];
然后回显它:
$month/$day/$year
问题是 PHP 在这里做数学并除以数字...我能做些什么来不发生这种情况并让它简单地显示日期..
谢谢
Right now i am the month, day, and year of a user seperated in three db fields titled month, day, year.
When i display it i am doing:
$month = $row['month'];
$day = $row['day'];
$year = $row['year'];
then to echo it:
$month/$day/$year
The problem is that the PHP is doing mathematics here and dividing the numbers... What can i do to not make that happen and let it simply display the dates..
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
try this out :
这样做的优点是,您可以选择如何设置日期格式,而与日期在数据库中的存储方式无关: http://php.net/manual/en/function.date.php
The advantage of this is that you can choose how to format the date independent of how it is stored in your database: http://php.net/manual/en/function.date.php
进行字符串连接。
或
进行字符串插值。
此处查看两者的差异/性能。
Doing string concatenation.
or
Doing string interpolation.
See the difference/performance of the two here.