PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Nemeth Zoltan   RS framework   index.php   Download  
File: index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: RS framework
Web application development framework
Author: By
Last change: Update of index.php
Date: 1 year ago
Size: 422 bytes
 

Contents

Class file image Download
<?php
/**
 * RS Framework index
 * Set error reporting
 */
ini_set('error_reporting', E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
ini_set('error_reporting', E_ALL);
//ini_set('error_log', 'files/log/error_log_' . date("Ym", time()) . '.log');
// Default settings
ob_start();
include_once
'sys/constants.php';
include_once
'sys/core.php';
// Show page with routing and data
include_once 'sys/generator.php';
ob_end_flush();