Login   Register  
PHP Classes
elePHPant
Icontem

File: sample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2008-05-19 02:14
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>";
?>