PHP Classes

File: index.php

Recommend this page to a friend!
  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: 19 years ago
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);
?>