PHP Classes

File: examples/bootstrap/index.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/bootstrap/index.php   Download  
File: examples/bootstrap/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 497 bytes
 

Contents

Class file image Download
<?php
ini_set
('error_reporting', E_ALL | E_STRICT);
ini_set('display_errors', 1);
ini_set('log_errors', 'Off');

require
'config.php';
require
'A/Application.php';


class
foo
{
    public
$bar = 'woohoo';
}

$App = new A_Application();

//add a random component that will be passed along into locator
$App->set('foo', new foo);

//set path to application
$App->setPath(dirname($_SERVER['SCRIPT_FILENAME']));

//output content directly to screen
echo $App->run();dump($App);