Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Diogo Resende  >  Def Setting Files  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Loads the deff file and prints it
Class: Def Setting Files
Load and save definition files in the def format
Author: By
Last change:
Date: 2004-04-30 11:17
Size: 181 bytes
 

Contents

Class file image Download
<?php
  
include "class.deff.php";
  
$def = new Deff();
  
$data $def->LoadDefinitionFile(realpath("./test.def"));
  
header("Content-Type: text/plain");
  
print_r($data);
?>