3v4l.org

run code in 300+ PHP versions simultaneously
<?php <?php header("Content-type: image/gif"); $cells = array ( liked=>200, hated=>400, indifferent=>900 ); $max = max( $cells ); $total = count ( $cells ); $totalwidth = 300; $totalheight = 200; $xgutter = 20; // left/right margin $ygutter = 20; // top/bottom margin $internalgap = 10; // space between cells $bottomspace = 30; // gap at the bottom (in addition to margin) $font = "ARIALBD.TTF"; $graphCanX = ( $totalwidth - $xgutter*2 ); $graphCanY = ( $totalheight - $ygutter*2 - $bottomspace );// starting draw position x - axis $posX = $xgutter; // starting draw pos - y - axis $posY = $totalheight - $ygutter - $bottomspace; $cellwidth = (int) (( $graphCanX - ( $internalgap * ( $total-1 ) )) / $total) ; $textsize = (int)($bottomspace); // adjust font size while ( list( $key, $val ) = each ( $cells ) ) { while ( 1 ) { $box = ImageTTFbBox( $textsize, 0, $font, $key ); $textWidth = abs( $box[2] ); if ( $textWidth < $cellwidth ) break; $textsize--; } } $image = imagecreate( $totalwidth, $totalheight ); $red = ImageColorAllocate($image, 255, 0, 0); $blue = ImageColorAllocate($image, 0, 0, 255 ); $black = ImageColorAllocate($image, 0, 0, 0 ); $grey = ImageColorAllocate($image, 100, 100, 100 ); reset ($cells); while ( list( $key, $val ) = each ( $cells ) ) { $cellheight = (int) (($val/$max) * $graphCanY); $center = (int)($posX+($cellwidth/2)); imagefilledrectangle( $image, $posX, ($posY-$cellheight), ($posX+$cellwidth), $posY, $blue ); $box = ImageTTFbBox( $textsize, 0, $font, $key ); $tw = $box[2]; ImageTTFText( $image, $textsize, 0, ($center-($tw/2)), ($totalheight-$ygutter), $black, $font, $key ); $posX += ( $cellwidth + $internalgap); } imagegif( $image );

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
5.6.150.0130.07718.18
5.6.140.0130.04318.14
5.6.130.0030.09018.14
5.6.120.0000.04720.98
5.6.110.0070.05021.13
5.6.100.0100.07320.97
5.6.90.0070.05020.95
5.6.80.0000.04320.28
5.5.300.0130.07717.93
5.5.290.0030.05317.98
5.5.280.0000.06020.64
5.5.270.0030.04020.88
5.5.260.0000.06320.86
5.5.250.0300.04720.65
5.5.240.0230.07320.36

preferences:
138.07 ms | 1394 KiB | 7 Q