<?php $amount = 5001; $result = match (true) { $amount >= 10000 => '10%', $amount >= 5000 => '5%', $amount >= 2000 => '1,5%', default => '0%', }; echo "The discount is: $result";
You have javascript disabled. You will not be able to edit any code.