return in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']) ; | return in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']) ; | ||||
} | } | ||||
function limitText($text, $limit) { | |||||
if (str_word_count($text, 0) > $limit) { | |||||
$words = str_word_count($text, 2); | |||||
$pos = array_keys($words); | |||||
$text = substr($text, 0, $pos[$limit]) . '...'; | |||||
} | |||||
return $text; | |||||
} | |||||
} | } |