mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
10 lines
171 B
PHP
10 lines
171 B
PHP
<?php
|
|
require_once 'config.php';
|
|
|
|
spl_autoload_register();
|
|
|
|
use MVC\Controllers\ControllerCache;
|
|
|
|
$obj = new ControllerCache('users/1.html', $redis);
|
|
echo $obj->render();
|