3v4l.org

run code in 300+ PHP versions simultaneously
<?php function week_date($weeks = 0) { $start = new DateTime("monday this week"); $end = new DateTime(); $start->modify("$weeks weeks"); $end->modify("$weeks weeks"); return $start->format('Y-m-d') . ' ' . $end->format('Y-m-d'); } echo week_date() . "\n"; // this week echo week_date(-1) . "\n"; // last week echo week_date(1) . "\n"; // next week
Output for git.master, git.master_jit, rfc.property-hooks
2020-02-10 2020-02-10 2020-02-03 2020-02-03 2020-02-17 2020-02-17

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:
117.2 ms | 405 KiB | 5 Q