Skip to content

Instantly share code, notes, and snippets.

@jcartledge
Created May 15, 2012 04:11
Show Gist options
  • Save jcartledge/2699060 to your computer and use it in GitHub Desktop.
Save jcartledge/2699060 to your computer and use it in GitHub Desktop.
PHP Quine
<?php $a = '<?php $a = \'!\';
echo preg_replace(\'/!/\', addslashes($a), $a, 1);';
echo preg_replace('/!/', addslashes($a), $a, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment