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 datetime="<?= date( 'm-d-Y', strtotime( $file->added ) ) ?>"><?= date( 'm.d.Y', strtotime( $file->added ) ) ?>
您需要将输出时间的请求添加到 date() 函数的参数 1。
<time datetime="<?= date( 'm-d-Y H:i:s', strtotime( $file->added ) ) ?>"><?= date( 'm.d.Y H:i:s', strtotime( $file->added ) ) ?>