Skip to content

Instantly share code, notes, and snippets.

View calvinchoy's full-sized avatar

Calvin Choy calvinchoy

View GitHub Profile
@calvinchoy
calvinchoy / PHP create and modify date.php
Last active August 4, 2020 13:18
PHP create and modify date
<?php
//create and modifying dates month
//creating new current date
$date_from = date('Y-m-01'); //first day of the current month
$date_to = date('Y-m-t'); //last day of the current month using t, use d for
//creating previous month date
$date_from_prev = date('Y-m-01', strtotime("first day of last month"));
$date_to_prev = date('Y-m-t', strtotime("last day of last month"));