I recently ran across a freeware web application written in PHP that utilized the following method to encrypt its source code: <?php eval(gzinflate(base64_decode(encoded text))); ?>

Fortunately, I was able to decode it with this PHP snippet: [...]