Skip to content

Instantly share code, notes, and snippets.

@binarin
Created May 21, 2012 09:59
Show Gist options
  • Save binarin/2761599 to your computer and use it in GitHub Desktop.
Save binarin/2761599 to your computer and use it in GitHub Desktop.
<?php
function returnValue() {
return "Ha!";
}
function returnFalse() {
return false;
}
if ( $it = returnValue() ) {
echo "Got it: " . $it . "\n";
}
if ( $it = returnFalse() ) {
echo "Impossible\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment