<?php $priceChart = (object) [ 'Monday' => function($price) { return (int) $price / 2; }, 'Wednesday' => function($price) { return (int) $price * 1.1; }, 'Friday' => function($price) { return (int) $price > 200 ? (int) $price - 20 : (int) $price; } ]; $price = 20.00; $currentDay = 'Wednesday'; $newPrice = isset($priceChart->{$currentDay}) ? call_user_func_array($priceChart->{$currentDay}, [$price]) : $price; echo $newPrice;
You have javascript disabled. You will not be able to edit any code.