Adresinde
Fatal error: Allowed memory size of 52428800 bytes exhausted (tried to allocate 76 bytes) in /home/futbolyo/public_html/forum/includes/functions.php on line 3871
Hatası alıyorum aşağıda kalın olarak yazdığım bölüm 3871. satır
Bu hatayı nasıl düzeltebilirim.
function convert_bits_to_array(&$bitfield, $_FIELDNAMES)
{
$bitfield = intval($bitfield);
$arry = array();
foreach ($_FIELDNAMES AS $field => $bitvalue)
{
if ($bitfield & $bitvalue)
{
$arry["$field"] = 1;
}
else
{
$arry["$field"] = 0;
}
}
return $arry;
}