Created
September 8, 2017 15:28
-
-
Save domantasg/a9e828725d54821b0dda09c7699aecff to your computer and use it in GitHub Desktop.
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
// Bad, messy | |
echo "Using \"quotation marks\" in a string can break out of the string"; | |
// Good, more readable | |
echo 'Using "quotation marks" in a string can break out of the echo statement'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment