Skip to content

Instantly share code, notes, and snippets.

@moradi-morteza
Created October 27, 2020 13:41
Show Gist options
  • Save moradi-morteza/476b22bcad71ada805ba70fc4fedcb8a to your computer and use it in GitHub Desktop.
Save moradi-morteza/476b22bcad71ada805ba70fc4fedcb8a to your computer and use it in GitHub Desktop.
[date and Time]
// date to timestamp
function dateToTimeStamp($date = '2020-10-01 17:38:15',$format ='Y-m-d H:i:s'){
$d = DateTime::createFromFormat($format,$date);
return $d->getTimestamp();
}
function timeStampToDate($timestamp=1601573895,$format ='Y-m-d H:i:s'){
return date($format, $timestamp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment