Skip to content

Instantly share code, notes, and snippets.

@dennisdegryse
Created January 20, 2015 22:35
Show Gist options
  • Select an option

  • Save dennisdegryse/400c417ccfa673c761da to your computer and use it in GitHub Desktop.

Select an option

Save dennisdegryse/400c417ccfa673c761da to your computer and use it in GitHub Desktop.
<?php
if ($x > 5) {
$y = "1";
} else {
$y = false;
}
if ($y) {
echo "2";
} else {
echo "3";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment