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 5.3.0 - 5.3.28, 5.4.0 - 5.4.28
Parse error: syntax error, unexpected '|' in /in/ZPAcp on line 9
Process exited with code 255.

preferences:
187.02 ms | 1395 KiB | 65 Q