3v4l.org

run code in 300+ PHP versions simultaneously
<?php class bidlogic { public $maxBid; public function getHighestBid() { return $this->maxBid; } public function submitBid($bid) { echo $bid . " - "; if( ($this->getHighestBid() < 50 && $this->getHighestBid() >= 0 && $bid > $this->getHighestBid()+0.50) || ($this->getHighestBid() < 500 && $this->getHighestBid() >= 50 && $bid > $this->getHighestBid()+1) || ($this->getHighestBid() < 1000 && $this->getHighestBid() >= 500 && $bid > $this->getHighestBid()+5) || ($this->getHighestBid() < 5000 && $this->getHighestBid() >= 1000 && $bid > $this->getHighestBid()+10) || ($this->getHighestBid() >= 5000 && $bid > $this->getHighestBid()+50) ){ echo "Pass\n"; } else { echo "Fail\n"; } } } $a = new bidlogic(); $a->maxBid = 5; $a->submitBid(5); $a->submitBid(5.4); $a->submitBid(5.5); $a->submitBid(5.6); $a->maxBid = 50; $a->submitBid(50); $a->submitBid(50.5); $a->submitBid(51); $a->submitBid(51.5);
Output for git.master, git.master_jit, rfc.property-hooks
5 - Fail 5.4 - Fail 5.5 - Fail 5.6 - Pass 50 - Fail 50.5 - Fail 51 - Fail 51.5 - Pass

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