PHP Classes

File: ini.php

Recommend this page to a friend!
  Classes of M.C. van der Most van Spijk   Ini   ini.php   Download  
File: ini.php
Role: Example script
Content type: text/plain
Description: Example
Class: Ini
Ini files parser
Author: By
Last change:
Date: 20 years ago
Size: 154 bytes
 

Contents

Class file image Download
<?php
require_once ('packages/sys/Ini.class.php');

$ini = new Ini('editplus.ini');
$ini->parse();

echo
"<pre>";
print_r($ini->get());
echo
"</pre>";

?>