3v4l.org

run code in 300+ PHP versions simultaneously
<?php function field_field($date, $field) { // Format yyyy-mm-dd or yyyy-mm or yyyy $length = strlen($date); if ( $length >= 4 ) { $year = substr($date, 0, 4); if ( $length >= 7 ) { $month = substr($date, 5, 2); if ( $length >= 9 ) { $day = substr($date, 8, 2); $start = "$year-$month-$day 00:00"; $day = str_pad(++$day,2,'0',STR_PAD_LEFT); $end = "$year-$month-$day 00:00"; } else { $start = "$year-$month-01 00:00"; $month = str_pad(++$month,2,'0',STR_PAD_LEFT); $end = "$year-$month-01 00:00"; } } else { $start = "$year-01-01 00:00"; $year = str_pad(++$year,2,'0',STR_PAD_LEFT); $end = "$year-01-01 00:00"; } return "$field >= '$start' AND $field < '$end'"; } else { return ' 1=1 '; } } echo field_field( '2010', 'me');
Output for git.master, git.master_jit, rfc.property-hooks
me >= '2010-01-01 00:00' AND me < '2011-01-01 00:00'

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