Skip to content

Instantly share code, notes, and snippets.

@sineld
Created December 14, 2012 08:52
Show Gist options
  • Select an option

  • Save sineld/4283770 to your computer and use it in GitHub Desktop.

Select an option

Save sineld/4283770 to your computer and use it in GitHub Desktop.
If Else Statement in Php Shorcut
<?php
$i = 2012;
echo $i ? 'true' : 'false';
// true
echo '<br>';
$i = 2012;
echo $i ?: 'false';
// 2012
echo '<br>';
$i = '';
echo $i ?: 'false';
// false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment