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.
如何将日期转换为可读格式,例如mm/dd/yy?下面的代码给了我这个:/Date(1335412800000)/
mm/dd/yy
<?php echo '<td>'.$r['effdate'].'</td>'; ?> //displaying this now: /Date(1335412800000)/
尝试:
<?php $effdate = date('m/j/Y', preg_replace('/[^\d]/','', $r['effdate'])/1000); echo '<td>'.$effdate.'</td>'; ?>
我正在删除所有非数字。
preg_replace('/[^\d]/','', $r['effdate'])
在 JavaScript 中除以 1000 作为纪元时间是 x 1000。
/1000
然后我返回格式化的日期。
date('m/j/Y', ...