3v4l.org

run code in 300+ PHP versions simultaneously
<?php $day1 = new DateTime( '2010-03-30' ); $day1->modify( '+1 month' ); $day1nextmonth=$day1->format( 'm' ); $day1result=$day1->format( 'd-m-Y' ); $day2 = new DateTime( '2010-03-30' ); $day2->modify( 'last day of next month' ); $day2nextmonth=$day2->format( 'm' ); $day2result=$day2->format( 'd-m-Y' ); echo "1st-".$day1result, "\n"; echo "2nd-".$day2result, "\n"; echo "1stnext month-".$day1nextmonth, "\n"; echo "2ndnext month-".$day2nextmonth, "\n"; $result=($day1nextmonth == $day2nextmonth)?$day1result:$day2result; echo $result;
Output for git.master_jit, git.master, rfc.property-hooks
1st-30-04-2010 2nd-30-04-2010 1stnext month-04 2ndnext month-04 30-04-2010

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.78 ms | 401 KiB | 8 Q