Skip to content

Instantly share code, notes, and snippets.

@elisechant
Created February 14, 2014 04:50
Show Gist options
  • Save elisechant/8995994 to your computer and use it in GitHub Desktop.
Save elisechant/8995994 to your computer and use it in GitHub Desktop.
Native php templating
// equivalent
<?= "hello {$world}" ?>
<?= 'hello' . $world ?>
<?php echo 'hello ' . $world ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment