3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(-1); function gzdecode_filler( $data, $length = 0 ) { $fp = fopen( 'compress.zlib://php://memory', 'r+' ); fwrite( $fp, $data ); fseek( $fp, 0 ); $length = (int)$length; $max = 32768 * strlen( $data ); $max = $length ? min( $length, $max ) : $max; $decoded = fread( $fp, $max + 1 ); if ( $decoded === false || strlen( $decoded ) > $max ) { return false; } return $decoded; } var_dump(gzdecode_filler(pack('H*', "1f8b08000000000000030bc94855282ccd4cce56482aca2fcf5348cbaf50c82acd2d2856c82f4b2d5228014ae72456552aa4e4a7eb0100e92590512c000000")));
Output for git.master, git.master_jit
Warning: fopen(compress.zlib://php://memory): Failed to open stream: operation failed in /in/R4WPt on line 6 Fatal error: Uncaught TypeError: fwrite(): Argument #1 ($stream) must be of type resource, bool given in /in/R4WPt:7 Stack trace: #0 /in/R4WPt(7): fwrite(false, '\x1F\x8B\x08\x00\x00\x00\x00\x00\x00\x03\v\xC9HU(...') #1 /in/R4WPt(22): gzdecode_filler('\x1F\x8B\x08\x00\x00\x00\x00\x00\x00\x03\v\xC9HU(...') #2 {main} thrown in /in/R4WPt on line 7
Process exited with code 255.
Output for rfc.property-hooks
Warning: fopen(compress.zlib://php://memory): Failed to open stream: operation failed in /in/R4WPt on line 6 Fatal error: Uncaught TypeError: fwrite(): Argument #1 ($stream) must be of type resource, false given in /in/R4WPt:7 Stack trace: #0 /in/R4WPt(7): fwrite(false, '\x1F\x8B\x08\x00\x00\x00\x00\x00\x00\x03\v\xC9HU(...') #1 /in/R4WPt(22): gzdecode_filler('\x1F\x8B\x08\x00\x00\x00\x00\x00\x00\x03\v\xC9HU(...') #2 {main} thrown in /in/R4WPt on line 7
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:
37.7 ms | 401 KiB | 8 Q