PHP Classes

File: classes/test2.class.php

Recommend this page to a friend!
  Classes of TB   Manager Class   classes/test2.class.php   Download  
File: classes/test2.class.php
Role: Auxiliary script
Content type: text/plain
Description: A second example class
Class: Manager Class
Load classes when a function is called
Author: By
Last change:
Date: 12 years ago
Size: 166 bytes
 

Contents

Class file image Download
<?php
   
class Test2 {
        public function
__construct() {}
       
        public function
test() {
            echo
'Test 2<br />';
        }
    }
?>