PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of TB   Manager Class   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example file
Class: Manager Class
Load classes when a function is called
Author: By
Last change:
Date: 12 years ago
Size: 178 bytes
 

Contents

Class file image Download
<?php
   
require_once('Manager.class.php');
   
   
$manager = new Manager(array(
       
'loadAll' => true
   
));
   
$manager->test();
   
$manager->test2_test();
?>