PHP Classes

File: sandbox/index.php

Recommend this page to a friend!
  Classes of Juraj Puchký   Clear Framework   sandbox/index.php   Download  
File: sandbox/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Clear Framework
General purpose Web application framework
Author: By
Last change:
Date: 7 years ago
Size: 302 bytes
 

Contents

Class file image Download
<?php
set_time_limit
(0);
ignore_user_abort(1);

$start = microtime(false);
include_once(
"bootstrap.php");
$cfDb = new cf\Db();

$router = new RouterController();
$router->process($_SERVER['REQUEST_URI']);

// Process view
$router->processView();
echo
microtime(false) - $start;
ob_end_flush();
exit(
0);