3v4l.org

run code in 300+ PHP versions simultaneously
<?php $amount = 5001; $result = match (true) { $amount >= 10000 => '10%', $amount >= 5000 => '5%', $amount >= 2000 => '1,5%', default => '0%', }; echo "The discount is: $result";
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
The discount is: 5%

preferences:
67.03 ms | 1100 KiB | 4 Q