Created
April 2, 2012 19:43
-
-
Save franz-josef-kaiser/2286666 to your computer and use it in GitHub Desktop.
Github Style example
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
| <?php | |
| $some_var = 'test'; | |
| // With inline var: | |
| echo "{$some_var}-with_trailing_text.png"; | |
| // With prepended var: | |
| echo $some_var.'-with_trailing_text.png'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment