Last active
January 15, 2020 10:37
-
-
Save GideonBabu/1d655cca374abe2d7a749b8f820fd6d5 to your computer and use it in GitHub Desktop.
Useful PHP Scripts
This file contains hidden or 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
| To split the date and time from datetime value | |
| $date = strtotime('8/29/2011 11:16:12 AM'); | |
| $dat = date('m/d/y', $date); | |
| $tme = date('H:m:s A',$date); | |
| ucfirst() - makes the first letter of the input string uppercase. | |
| upfirst('hello world!') - returns 'Hello world!'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment