PHP Classes

File: app/bootstrap.php

Recommend this page to a friend!
  Classes of akeel   F3A   app/bootstrap.php   Download  
File: app/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: F3A
PHP Web development framework like Laravel lite
Author: By
Last change:
Date: 2 years ago
Size: 152 bytes
 

Contents

Class file image Download
<?php
/**
 * Bootstrap app
 */
use App\Helpers\Route;

$route = (isset($_GET['url']))?'/'.$_GET['url']:'/';

/**
 * Init route
 */
Route::init($route);