Heim > Fragen und Antworten > Hauptteil
echo date('Ymt',strtotime('201812'));
Das Ergebnis ist: 20181130
Ich weiß nicht, warum das das Ergebnis ist und nicht 20181231. Ich hoffe, ihr könnt es Gib mir ein paar Antworten.
依稀往梦似曾见2018-11-06 18:46:17
strtotime这个函数是生成时间戳的意思。如果 strtotime(' -1days') 如果是这样子就是昨天这个时候的时间戳,要想输出日期时间分秒。echo date('Y-m-d H:i:s'); 或者echo date('Y-m-d H:i:s',strtotime('-1days')); 也可以替换 now 这个函数参数比较多。你去看看手册