3v4l.org

run code in 300+ PHP versions simultaneously
<?php $i = imagecreatefrompng("http://in-the-attic.com/img/posts/teaching-my-5-year-old-daughter-to-code/script_before.png"); for ($x=0;$x<imagesx($i);$x++) { for ($y=0;$y<imagesy($i);$y++) { $rgb = imagecolorat($i,$x,$y); $r = ($rgb >> 16) & 0xFF; $g = ($rgb >> 8) & 0xFF; $b = $rgb & 0xFF; $rTotal += $r; $gTotal += $g; $bTotal += $b; $total++; } } echo round($rTotal/$total); echo round($gTotal/$total); echo round($bTotal/$total);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function imagecreatefrompng() in /in/CrXpW:2 Stack trace: #0 {main} thrown in /in/CrXpW on line 2
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:
36.45 ms | 401 KiB | 8 Q