Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将时间值插入为
<?php $time = date("H").date("i").date("s"); ?>
在 DB2 数据库字段中,其数据类型为6 S(Length=6, Type=Signed)。因此,在下午 6:54 的时间,我看到该值存储为一些数字,例如:185,414。
6 S
185,414
我想在 php.ini 中显示原始值。
我如何正确解析数字时间值并在 php 中显示?
好吧,我疯狂地想出了解决方案,这就像从字符串中删除逗号一样简单,并将其格式化为显示如下:hh:mm:ss