Skip to content

Instantly share code, notes, and snippets.

@zgulde
Created September 7, 2016 20:27
Show Gist options
  • Select an option

  • Save zgulde/f900ad6b254d32861d05cb7deb585d35 to your computer and use it in GitHub Desktop.

Select an option

Save zgulde/f900ad6b254d32861d05cb7deb585d35 to your computer and use it in GitHub Desktop.

Echo shorthand

<?php echo $variable ?>

is the same as

<?= $variable ?>

If statement alternate synax

<?php if ($value) { ?>
<? } ?>

is the same as

<?php if ($value): ?>
<?php endif; ?>

foreach statement alternative syntax

<?php foreach($things as $thing) { ?>
<?php } ?>

same as

<?php foreach($things as $thing): ?>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment