Skip to content

Instantly share code, notes, and snippets.

@alefcastelo
Created August 2, 2016 13:36
Show Gist options
  • Save alefcastelo/decedac228ccebbf7bc4d05da0be9405 to your computer and use it in GitHub Desktop.
Save alefcastelo/decedac228ccebbf7bc4d05da0be9405 to your computer and use it in GitHub Desktop.
<?php
$variavel = "texto qualquer";
print "variável: {$variavel}"; // variável: texto qualquer
print 'variável: {$variavel}'; // variável: {$variavel}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment