Skip to content

Instantly share code, notes, and snippets.

@RonSkons
Last active June 20, 2020 11:13
Show Gist options
  • Save RonSkons/afed8f11ecb72a7de996a80af3e6fcca to your computer and use it in GitHub Desktop.
Save RonSkons/afed8f11ecb72a7de996a80af3e6fcca to your computer and use it in GitHub Desktop.
First attempt at making a quine in PHP. Not pretty, but it works.
<?php
$c="ZWNobygiPD9waHBcbiIuJyRjPSInLiRjLiJcIjtcbiIuYmFzZTY0X2RlY29kZSgkYykpOw==";
echo("<?php\n".'$c="'.$c."\";\n".base64_decode($c));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment