1
0
Fork 0
mirror of synced 2024-07-02 21:20:58 +12:00
appwrite/public/index.php
2020-10-24 08:42:15 +03:00

24 lines
576 B
PHP

<?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
*/
error_reporting(0);
ini_set('display_errors', 0);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$path = (isset($_GET['q'])) ? explode('/', $_GET['q']) : [];
array_shift($path);
$version = array_shift($path);
include __DIR__ . '/../app/app.php';