Files
h5ai/src/_h5ai/index.php
2015-05-20 01:53:56 +02:00

13 lines
385 B
PHP

<?php
define('MIN_PHP_VERSION', '5.4.0');
if (!function_exists('version_compare') || version_compare(PHP_VERSION, MIN_PHP_VERSION, '<')) {
header('Content-type: text/plain;charset=utf-8');
echo '[err] h5ai requires PHP ' . MIN_PHP_VERSION . ' or later, but found PHP ' . PHP_VERSION;
exit;
}
require_once __DIR__ . '/private/php/class-bootstrap.php';
Bootstrap::run();