From: Ilia Alshanetsky Date: Wed, 6 Jun 2007 22:58:53 +0000 (+0000) Subject: MFB: Optimize out a loop X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~500 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da635f2b9861ab63225b5da9d3470297b37b0ca0;p=php MFB: Optimize out a loop --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 592577be18..ea70ec3562 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -2484,12 +2484,13 @@ static void php_do_date_sunrise_sunset(INTERNAL_FUNCTION_PARAMETERS, int calc_su RETURN_LONG(calc_sunset ? set : rise); } N = (calc_sunset ? h_set : h_rise) + gmt_offset; - while (N > 24) { - N -= 24; - } - while (N < 0) { - N += 24; + + if (N > 24) { + N %= 24; + } else if (N < 0) { + N = N % 24 + 24; } + switch (retformat) { case SUNFUNCS_RET_STRING: sprintf(retstr, "%02d:%02d", (int) N, (int) (60 * (N - (int) N)));