if (version_compare(PHP_VERSION,
$minPhpVersion, '<'
)) { $message =
sprintf( 'Your PHP version must be %s or higher to run CodeIgniter. Current version: %s',
$minPhpVersion,
PHP_VERSION
);
exit($message);
}// Path to the front controller (this file)
define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR
);
// Ensure the current directory is pointing to the front controller's directory
if (getcwd() . DIRECTORY_SEPARATOR !== FCPATH
) { chdir(FCPATH
);
}/*
*---------------------------------------------------------------
* BOOTSTRAP THE APPLICATION
*---------------------------------------------------------------
* This process sets up the path constants, loads and registers
* our autoloader, along with Composer's, loads our constants
* and fires up an environment-specific bootstrapping.
*/