3v4l.org

run code in 300+ PHP versions simultaneously
<?php $standardPrice = 77.88; $specialPrices = json_decode('{"54.44":"20130515163000-20130515170000","4.88":"20130515170000-20130515190000","5.00":"20130515200000-20130515200045"}'); $currentPrice = function($standardPrice, $specialPrices) { if (empty($specialPrices)) { return $standardPrice; } $now = strftime('%Y%m%d%H%M%S'); foreach ($specialPrices as $price => $interval) { list($min, $max) = explode('-', $interval); if ($now >= $min && $now <= $max ) { return $price; } } return $standardPrice; }; echo $currentPrice($standardPrice, $specialPrices);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Function strftime() is deprecated in /in/EXG93 on line 18 54.44

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:
42.85 ms | 401 KiB | 8 Q