Skip to content

Instantly share code, notes, and snippets.

@franz-josef-kaiser
Created April 2, 2012 19:43
Show Gist options
  • Select an option

  • Save franz-josef-kaiser/2286666 to your computer and use it in GitHub Desktop.

Select an option

Save franz-josef-kaiser/2286666 to your computer and use it in GitHub Desktop.
Github Style example
<?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