Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- zlib.inflate (with convert.base64-decode) --EXTENSIONS-- zlib --FILE-- <?php $tex..

Decoded Output download

--TEST--
zlib.inflate (with convert.base64-decode)
--EXTENSIONS--
zlib
--FILE--
<?php
$text = 'HctBDoAgDETRq8zOjfEeHKOGATG0TRpC4u1Vdn/xX4IoxkVMxgP1zA4vkJVhULk9UGkM6TvSNolmxUNlNLePVQ45O3eINf0fsQxtCxwv';

$fp = fopen('php://stdout', 'w');
stream_filter_append($fp, 'convert.base64-decode', STREAM_FILTER_WRITE);
stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_WRITE);
fwrite($fp, $text);
fclose($fp);

?>
--EXPECT--
I am the very model of a modern major general, I've information vegetable, animal, and mineral.

Did this file decode correctly?

Original Code

--TEST--
zlib.inflate (with convert.base64-decode)
--EXTENSIONS--
zlib
--FILE--
<?php
$text = 'HctBDoAgDETRq8zOjfEeHKOGATG0TRpC4u1Vdn/xX4IoxkVMxgP1zA4vkJVhULk9UGkM6TvSNolmxUNlNLePVQ45O3eINf0fsQxtCxwv';

$fp = fopen('php://stdout', 'w');
stream_filter_append($fp, 'convert.base64-decode', STREAM_FILTER_WRITE);
stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_WRITE);
fwrite($fp, $text);
fclose($fp);

?>
--EXPECT--
I am the very model of a modern major general, I've information vegetable, animal, and mineral.

Function Calls

fopen 1

Variables

$fp True
$text HctBDoAgDETRq8zOjfEeHKOGATG0TRpC4u1Vdn/xX4IoxkVMxgP1zA4vkJVh..

Stats

MD5 8326e72a107acee8465e849783b8f370
Eval Count 0
Decode Time 90 ms