*/ @ini_set('display_errors', 'on'); // Check PHP version if (version_compare(PHP_VERSION, '7.1.3', '<')) { header('Content-Type: text/html; charset=UTF-8'); exit( '[Error] Blessing Skin requires PHP version >= 7.1.3, you are now using '.PHP_VERSION.'
'. '[错误] 你的 PHP 版本过低('.PHP_VERSION.'),Blessing Skin 要求至少为 7.1.3' ); } require __DIR__.'/bootstrap/autoload.php'; // Check the runtime environment runtime_check(array( 'extensions' => array('pdo_mysql', 'openssl', 'gd', 'mbstring', 'tokenizer'), 'write_permission' => array('storage', 'plugins', 'bootstrap/cache') )); // Process the request require __DIR__.'/bootstrap/kernel.php';