Skip to content

Instantly share code, notes, and snippets.

@LegendZhu
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save LegendZhu/e2098142deda64c9fa60 to your computer and use it in GitHub Desktop.

Select an option

Save LegendZhu/e2098142deda64c9fa60 to your computer and use it in GitHub Desktop.
<?php
// http://twitto.org/
require __DIR__.'/c.php';
if (!is_callable($c = @$_GET['c'] ?: function() { echo 'Woah!'; }))
throw new Exception('Error');
$c();
?>
<?php
// c.php
function hello_world()
{
echo 'Hello World!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment