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-- Test function gzputs() by calling it with its expected arguments --EXTENSIONS-- z..

Decoded Output download

--TEST--
Test function gzputs() by calling it with its expected arguments
--EXTENSIONS--
zlib
--FILE--
<?php

$filename = __DIR__."/gzputs_basic.txt.gz";
$h = gzopen($filename, 'w');
$str = "Here is the string to be written. ";
$length = 10;
var_dump(gzputs( $h, $str ) );
var_dump(gzputs( $h, $str, $length ) );
gzclose($h);

$h = gzopen($filename, 'r');
gzpassthru($h);
gzclose($h);
echo "
";
unlink($filename);
?>
--EXPECT--
int(34)
int(10)
Here is the string to be written. Here is th

Did this file decode correctly?

Original Code

--TEST--
Test function gzputs() by calling it with its expected arguments
--EXTENSIONS--
zlib
--FILE--
<?php

$filename = __DIR__."/gzputs_basic.txt.gz";
$h = gzopen($filename, 'w');
$str = "Here is the string to be written. ";
$length = 10;
var_dump(gzputs( $h, $str ) );
var_dump(gzputs( $h, $str, $length ) );
gzclose($h);

$h = gzopen($filename, 'r');
gzpassthru($h);
gzclose($h);
echo "\n";
unlink($filename);
?>
--EXPECT--
int(34)
int(10)
Here is the string to be written. Here is th

Function Calls

None

Variables

None

Stats

MD5 ab74e736335729fad3bd100d0bc954d3
Eval Count 0
Decode Time 97 ms