Ver original<?php$febrero = strtotime("next february");$agosto= strtotime("next august");$now = strtotime("now");if ($febrero > $agosto) { echo "Febrero"; } else { echo "Agosto"; }?>