3v4l.org

run code in 300+ PHP versions simultaneously
<?php function add_weeks($weeks = 1, $base = 'now') { // normalise base to a unix timestamp if (!is_string($base)) { $base = intval($base); } else { $base = strtotime($base); } var_dump(date('Y-m-d', $base)); // get the date one week from the base $result = strtotime(sprintf("@{$base} +{$weeks} weeks", $base, $weeks)); var_dump(date('Y-m-d', $result)); // if it falls in a different month, get the last day of the base month if (date('n', $base) !== date('n', $result)) { $result = strtotime("last day of month @{$base}"); } return $result; } echo date('Y-m-d', add_weeks(1)) . "\n"; echo date('Y-m-d', add_weeks(2)) . "\n"; echo date('Y-m-d', add_weeks(1, '2012-06-18')) . "\n"; echo date('Y-m-d', add_weeks(2, '2012-06-18')) . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
string(10) "2014-03-28" string(10) "2014-04-04" 1970-01-01 string(10) "2014-03-28" string(10) "2014-04-11" 1970-01-01 string(10) "2012-06-18" string(10) "2012-06-25" 2012-06-25 string(10) "2012-06-18" string(10) "2012-07-02" 1970-01-01

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