Skip to content

Instantly share code, notes, and snippets.

@collinprice
Created April 19, 2013 19:10
Show Gist options
  • Save collinprice/5422499 to your computer and use it in GitHub Desktop.
Save collinprice/5422499 to your computer and use it in GitHub Desktop.
<?php
$b = false;
if ($b) {
function doit() {
echo "one";
}
}
else {
function doit() {
echo "two";
}
}
doit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment