3v4l.org

run code in 300+ PHP versions simultaneously
<?php header('Content-Type: image/png'); $im = imagecreatetruecolor(290, 60); $grey = imagecolorallocate($im, 200, 200, 200); $black = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 0, 0, 289, 59, $grey); $font = 'seguisym.ttf'; $font = realpath($font); //&#127744; is the unicode html entity for a cyclone. It is under 'Miscellaneous Symbols And Pictographs'. $text = "&#127744; is a cyclone!"; imagettftext($im, 20, 0, 5, 22, $black, $font, $text); //&#9924; is the unicode html entity for a snowman. It is under 'Miscellaneous Symbols'. $text = "&#9924; is a snowman!"; imagettftext($im, 20, 0, 5, 52, $black, $font, $text); imagepng($im); imagedestroy($im);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function imagecreatetruecolor() in /in/8BLZc:4 Stack trace: #0 {main} thrown in /in/8BLZc on line 4
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:
40.34 ms | 401 KiB | 8 Q