mirror of https://github.com/craftcms/cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
<?php
|
|
/**
|
|
* Craft web bootstrap file.
|
|
*
|
|
* @link https://craftcms.com/
|
|
* @copyright Copyright (c) Pixel & Tonic, Inc.
|
|
* @license https://craftcms.github.io/license/
|
|
*/
|
|
|
|
// Make sure they're running PHP 7+
|
|
if (PHP_VERSION_ID < 70205) {
|
|
exit('Craft requires PHP 7.2.5 or later.');
|
|
}
|
|
|
|
// Check for this early because Craft uses it before the requirements checker gets a chance to run.
|
|
if (!extension_loaded('mbstring') || (extension_loaded('mbstring') && ini_get('mbstring.func_overload') != 0)) {
|
|
exit('Craft requires the <a href="https://php.net/manual/en/book.mbstring.php" rel="noopener" target="_blank">PHP multibyte string</a> extension in order to run. Please talk to your host/IT department about enabling it on your server.');
|
|
}
|
|
|
|
// PHP environment normalization
|
|
// -----------------------------------------------------------------------------
|
|
|
|
mb_detect_order('auto');
|
|
|
|
// Normalize how PHP's string methods (strtoupper, etc) behave.
|
|
if (PHP_VERSION_ID < 70300) {
|
|
setlocale(
|
|
LC_CTYPE,
|
|
'C.UTF-8', // libc >= 2.13
|
|
'C.utf8', // different spelling
|
|
'en_US.UTF-8', // fallback to lowest common denominator
|
|
'en_US.utf8' // different spelling for fallback
|
|
);
|
|
} else {
|
|
// https://github.com/craftcms/cms/issues/4239
|
|
setlocale(
|
|
LC_CTYPE,
|
|
'C.UTF-8', // libc >= 2.13
|
|
'C.utf8' // different spelling
|
|
);
|
|
}
|
|
|
|
// Set default timezone to UTC
|
|
date_default_timezone_set('UTC');
|
|
|
|
// Load Craft
|
|
// -----------------------------------------------------------------------------
|
|
|
|
$appType = 'web';
|
|
|
|
return require __DIR__ . '/bootstrap.php';
|