Last active
December 29, 2018 11:10
-
-
Save yogeshdubey2006/0a4c6b87dba44882cd6f1a12f5d57bf1 to your computer and use it in GitHub Desktop.
Useful PHP code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// To split the date and time from datetime value | |
$date = strtotime('10/29/2018 10:54:15 PM'); | |
$dat = date('m/d/y', $date); | |
$tme = date('H:m:s A',$date); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment