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 ) ) ?>