3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gzdecode_filler( $data, $length ) { $fp = fopen( 'php://memory', 'r+' ); fwrite( $fp, $data ); fseek( $fp, 0 ); stream_filter_append( $fp, 'zlib.inflate', STREAM_FILTER_READ ); $length = (int)$length; $max = 32768 * strlen( $data ); $max = $length ? min( $length, $max ) : $max; $decoded = fread( $data, $max + 1 ); if ( $decoded === false || strlen( $decoded ) > $max ) { return false; } return $decoded; } var_dump(gzdecode_filler(hex2bin("1f8b08000000000000030bc94855282ccd4cce56482aca2fcf5348cbaf50c82acd2d2856c82f4b2d5228014ae72456552aa4e4a7eb0100e92590512c000000")));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: Too few arguments to function gzdecode_filler(), 1 passed in /in/QdQcn on line 21 and exactly 2 expected in /in/QdQcn:3 Stack trace: #0 /in/QdQcn(21): gzdecode_filler('\x1F\x8B\x08\x00\x00\x00\x00\x00\x00\x03\v\xC9HU(...') #1 {main} thrown in /in/QdQcn on line 3
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
46.45 ms | 401 KiB | 8 Q