3v4l.org

run code in 300+ PHP versions simultaneously
<?php function period_to_timestamps($period) { switch($period) { case "last_7_days": $start = strtotime('-7 days'); $end = strtotime('now'); break; case "this_month": $start = strtotime('first day of this month'); $end = strtotime('now'); break; case "last_month": $start = strtotime('first day of last month'); $end = strtotime('last day of last month'); break; case "this_year": $start = strtotime('01-01-' . date('Y', strtotime('now'))); $end = strtotime('now'); break; case "last_year": $start = strtotime('first day of last year'); $end = strtotime('last day of last year'); break; default: $start = strtotime('now'); $end = strtotime('now'); } return array($start, $end); } var_dump(period_to_timestamps('last_7_days'));
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> int(1403030491) [1]=> int(1403635291) }

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