3v4l.org

run code in 300+ PHP versions simultaneously
<?php $imagee = true; $width = 1; $height = 10; function fit($maxwidth = false, $maxheight = false) { if (!$imagee) return false; # First must find which direction will be the limiting factor. # E.g. a short image in a tall frame will be limited # by width while a tall image in a short frame will be # limited by height. if ($maxwidth && $maxheight) { $frameratio = $maxheight/$maxwidth; } if ($width == 0) return false; // Prevent divide by zero error. $imageratio = $height/$width; # If the fit frameratio is less than the imageratio then # the height constrains if ( (($frameratio > 0) && ($frameratio < $imageratio)) || !$maxwidth) { // Height constrains // $newwidth = $maxheight / $imageratio; if ($newwidth < 1) $newwidth = 1; $this->resize($newwidth,$maxheight); } else { // Width constrains // $newheight = $maxwidth * $imageratio; if ($newheight < 1) $newheight = 1; $this->resize($maxwidth,$newheight); } } fit();
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $imagee in /in/Cm8uU on line 9

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:
55.91 ms | 401 KiB | 8 Q