3v4l.org

run code in 300+ PHP versions simultaneously
<?php $day1 = new DateTime( '2013-01-01' ); $day1->modify( '+1 month' ); $day1nextmonth=$day1->format( 'm' ); $day1result=$day1->format( 'd-m-Y' ); $day2 = new DateTime( '2013-01-01' ); $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, git.master_jit, rfc.property-hooks
1st-01-02-2013 2nd-28-02-2013 1stnext month-02 2ndnext month-02 01-02-2013

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