3v4l.org

run code in 300+ PHP versions simultaneously
<?php function get_weekday($date) { $week_day = date('w',$date); if ($week_day == 0) return strtotime("+1 day",$date); elseif ($week_day == 6) return strtotime("+2 day", $date); return $date; } for($i = 1; $i < 10; $i++) { $today = strtotime("+$i days"); $quote_for = get_weekday($today); $diff = ceil(($quote_for - $today)/86400); // difference in days echo "On " . date('l \t\h\e jS',$today) . " the shipping quote will be for " . date('l \t\h\e jS', $quote_for) . " which is " . abs($diff) . " days " . ($diff <0?"before":"after") . " today. " . date('Y-m-d',$today) . " - " . date('Y-m-d',$quote_for) . "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
On Wednesday the 30th the shipping quote will be for Wednesday the 30th which is 0 days after today. 2013-01-30 - 2013-01-30 On Thursday the 31st the shipping quote will be for Thursday the 31st which is 0 days after today. 2013-01-31 - 2013-01-31 On Friday the 1st the shipping quote will be for Friday the 1st which is 0 days after today. 2013-02-01 - 2013-02-01 On Saturday the 2nd the shipping quote will be for Monday the 4th which is 2 days after today. 2013-02-02 - 2013-02-04 On Sunday the 3rd the shipping quote will be for Monday the 4th which is 1 days after today. 2013-02-03 - 2013-02-04 On Monday the 4th the shipping quote will be for Monday the 4th which is 0 days after today. 2013-02-04 - 2013-02-04 On Tuesday the 5th the shipping quote will be for Tuesday the 5th which is 0 days after today. 2013-02-05 - 2013-02-05 On Wednesday the 6th the shipping quote will be for Wednesday the 6th which is 0 days after today. 2013-02-06 - 2013-02-06 On Thursday the 7th the shipping quote will be for Thursday the 7th which is 0 days after today. 2013-02-07 - 2013-02-07

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:
36.6 ms | 403 KiB | 8 Q