3v4l.org

run code in 300+ PHP versions simultaneously
<?php class bidlogic { public function getHighestBid() { return 5; } public function submitBid($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"; } } } $a = new bidlogic(); $a->submitBid(100);
Output for git.master, git.master_jit, rfc.property-hooks
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:
32.81 ms | 401 KiB | 8 Q