PHP Classes

File: sample.php

Recommend this page to a friend!
  Classes of Tom Schaefer   QReflection   sample.php   Download  
File: sample.php
Role: Example script
Content type: text/plain
Description: Sample of usage
Class: QReflection
Retrieve the structure of a class using reflection
Author: By
Last change:
Date: 15 years ago
Size: 156 bytes
 

Contents

Class file image Download
<?php
include_once("QReflection.class.php");
$object = new QReflection("QReflection");
print
"<pre>";
print_r($object->getArray());
print
"</pre>";
?>