PHP Warning: Error while sending QUERY packet. PID=3656 in C:\_majordomo\htdocs
\lib\mysql.class.php on line 190
Warning: Error while sending QUERY packet. PID=3656 in C:\_majordomo\htdocs\lib\
mysql.class.php on line 190
PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to all
ocate 65488 bytes) in C:\_majordomo\htdocs\lib\common.class.php on line 345
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate
65488 bytes) in C:\_majordomo\htdocs\lib\common.class.php on line 345
у меня функция timebetween нигде не используется.... помогите разобраться
строка этого файла-начало тела функции:
Код: Выделить всё
function timeBetween($tm1, $tm2)
{
$trueTime1 = timeConvert($tm1);
$trueTime2 = timeConvert($tm2);
if ($trueTime1 > $trueTime2)
{
if ($trueTime2 < time())
{
$trueTime2 += 24 * 60 * 60;
}
else
{
$trueTime1 -= 24 * 60 * 60;
}
}
if ((time() >= $trueTime1) && (time() <= $trueTime2))
return true;
return false;
}