20 lines
353 B
PHP
20 lines
353 B
PHP
<?php
|
|
|
|
// Функция роутинга API
|
|
function handleRouting($routes = []) {
|
|
|
|
$request = $_SERVER['REQUEST_URI'];
|
|
$path = parse_url($request, PHP_URL_PATH);
|
|
|
|
if (isset($routes[$path])) {
|
|
|
|
$file_path = $routes[$path];
|
|
global $_POST, $_FILES, $_SERVER, $_GET;
|
|
include $file_path;
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|