3v4l.org

run code in 300+ PHP versions simultaneously
<?php //get First day of Month //get Last day of Month $first_day_of_month = mktime(0,0,0); $last_day_of_month = mktime(23,59,59,date('n'),date('j'),date('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 $datetest) { $split_date = explode("-",$datetest); print_r($split_date); $comp_date = mktime(0,0,0,$split_date[1],$split_date[0],$split_date[2]); 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: 1415055600<br />Last Day of Month: 1415141999<br /><br /> Array ( [0] => 11 [1] => 30 [2] => 2014 ) 1465596000 :Not in Month!<br /> Array ( [0] => 11 [1] => 31 [2] => 2014 ) 1468188000 :Not in Month!<br /> Array ( [0] => 11 [1] => 08 [2] => 2014 ) 1407708000 :Not in Month!<br /> Array ( [0] => 11 [1] => 8 [2] => 2014 ) 1407708000 :Not in Month!<br /> Array ( [0] => 11 [1] => 9 [2] => 2014 ) 1410386400 :Not in Month!<br /> Array ( [0] => 11 [1] => 11 [2] => 2014 ) 1415660400 :Not in Month!<br /> Array ( [0] => 11 [1] => 24 [2] => 2014 ) 1449788400 :Not in Month!<br /> Array ( [0] => 11 [1] => 1 [2] => 2014 ) 1389394800 :Not in Month!<br /> Array ( [0] => 10 [1] => 30 [2] => 2014 ) 1465509600 :Not in Month!<br /> Array ( [0] => 12 [1] => 1 [2] => 2014 ) 1389481200 :Not in Month!<br /> Array ( [0] => 11 [1] => 1 [2] => 1997 ) 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:
40.66 ms | 403 KiB | 8 Q