3v4l.org

run code in 300+ PHP versions simultaneously
<?php //get First day of Month //get Last day of Month $first_day_of_month = strtotime(date('m-01-Y')); $last_day_of_month = strtotime(date('m-t-Y')); echo "First Day of Month: "; echo $first_day_of_month; echo "<br />"; echo "Last Day of Month: "; echo $last_day_of_month; $datetest = array('11-30-2014', '11-31-2014', '11-08-2014', '11-8-2014', '11-9-2014', '11-11-2014', '11-24-2014', '11-1-2014', '10-30-2014', '12-1-2014', '11-1-1997'); echo "<br /><br />\n\n"; foreach ($datetest as $datetesta) { $comp_date = strtotime($datetesta); if (($comp_date >= $first_day_of_month) && ($comp_date <= $last_day_of_month)){ echo "$comp_date :"; echo " Is in Month!"; echo "<br />\n"; } else { echo "$comp_date :"; echo "Not in Month!"; echo "<br />\n"; } }
Output for git.master, git.master_jit, rfc.property-hooks
First Day of Month: 1389394800<br />Last Day of Month: <br /><br /> :Not in Month!<br /> :Not in Month!<br /> 1407708000 :Not in Month!<br /> 1407708000 :Not in Month!<br /> 1410386400 :Not in Month!<br /> 1415660400 :Not in Month!<br /> :Not in Month!<br /> 1389394800 :Not in Month!<br /> :Not in Month!<br /> 1389481200 :Not in Month!<br /> 852937200 :Not in Month!<br />

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.03 ms | 402 KiB | 8 Q