Dieser Artikel stellt hauptsächlich die Methode von PHP vor, um die Zeitstempel des aktuellen Monats und des Anfangs und Endes des Vormonats zu erhalten. Dabei geht es um das Urteilsvermögen und die Betriebsfähigkeiten von PHP in Bezug auf Datum und Uhrzeit >
für Details: Aktueller Monat<?php $thismonth = date('m'); $thisyear = date('Y'); $startDay = $thisyear . '-' . $thismonth . '-1'; $endDay = $thisyear . '-' . $thismonth . '-' . date('t', strtotime($startDay)); $b_time = strtotime($startDay);//当前月的月初时间戳 $e_time = strtotime($endDay);//当前月的月末时间戳
<?php $thismonth = date('m'); $thisyear = date('Y'); if ($thismonth == 1) { $lastmonth = 12; $lastyear = $thisyear - 1; } else { $lastmonth = $thismonth - 1; $lastyear = $thisyear; } $lastStartDay = $lastyear . '-' . $lastmonth . '-1'; $lastEndDay = $lastyear . '-' . $lastmonth . '-' . date('t', strtotime($lastStartDay)); $b_time = strtotime($lastStartDay);//上个月的月初时间戳 $e_time = strtotime($lastEndDay);//上个月的月末时间戳
So fügen Sie mehrere Daten über PHPMySQL
PHPMySQL
Das obige ist der detaillierte Inhalt vonPHP-Methode zum Abrufen der Zeitstempel des aktuellen Monats sowie des Anfangs und Endes des vorherigen Monats. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!