3v4l.org

run code in 300+ PHP versions simultaneously
<?php $now = (new DateTime())->setTime(0,0,31)->getTimestamp(); $ts = strftime('%Y-%m-%d %H:%M:00', $now); $exists = ['jobname/' . $ts => true ]; $timeAhead = 15 * 60 + $now; $jobName = 'jobname'; for ($time = $now + 30; $time < $timeAhead; $time += 60) { $ts = strftime('%Y-%m-%d %H:%M:00', $time); echo $ts . PHP_EOL; if (!empty($exists[$jobName.'/' . $ts])) { // already scheduled continue; } $exists[$jobName.'/' . $ts] = true; } echo count($exists);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 3 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:01:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:02:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:03:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:04:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:05:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:06:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:07:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:08:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:09:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:10:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:11:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:12:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:13:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:14:00 Deprecated: Function strftime() is deprecated in /in/TD6m7 on line 12 2015-12-16 00:15:00 16

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:
41.86 ms | 404 KiB | 8 Q