1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12:00
appwrite/public/index.php

24 lines
585 B
PHP
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
/**
* “Programming today is a race between software engineers striving to build bigger and better idiot-proof programs,
* and the Universe trying to produce bigger and better idiots.
* So far, the Universe is winning.
*
* Rick Cook, The Wizardry Compiled
*/
2020-03-01 19:33:19 +13:00
error_reporting(0);
ini_set('display_errors', 0);
2019-08-21 03:43:01 +12:00
// ini_set('display_errors', 1);
// ini_set('display_startup_errors', 1);
// error_reporting(E_ALL);
2019-05-09 18:54:39 +12:00
$path = (isset($_GET['q'])) ? explode('/', $_GET['q']) : [];
array_shift($path);
$version = array_shift($path);
2020-06-25 23:31:27 +12:00
include __DIR__ . '/../app/app.php';