'.$r." was not found. Please check if it should exist, using \"php -m\"\n\n";
if (version_compare(PHP_VERSION, '7.1.0') < 0)
$error .= 'PHP Version 7.1 or higher required! Your version is '.PHP_VERSION.".\nCore functions are unavailable!\n";
if ($error)
{
echo CLI ? strip_tags($error) : $error;
die();
}
// include all necessities, set up basics
require_once 'includes/kernel.php';
?>