Created
September 8, 2017 20:59
-
-
Save tisuchi/a62aee5188e5b1830d1e1362ab5b81c7 to your computer and use it in GitHub Desktop.
declare clean php variable 1
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
//its a really bad practice | |
$a = 'Go to school'; | |
$b = 'Go to Market'; | |
$c = 'Buy Items'; | |
$d = 'Finish home task'; | |
//good way to define variables | |
$school = 'Go to school'; | |
$market = 'Go to Market'; | |
$purchase = 'Buy Items'; | |
$task = 'Finish home task'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment