PHP Classes

File: example02.php

Recommend this page to a friend!
  Classes of xpology   ini_manager   example02.php   Download  
File: example02.php
Role: Example script
Content type: text/plain
Description: example02
Class: ini_manager
Manipulate configuration files in the ini format
Author: By
Last change:
Date: 15 years ago
Size: 180 bytes
 

Contents

Class file image Download
<?php
require_once( "ini_manager.php" );

$iniMANAGER = new ini_manager();
$A = $iniMANAGER->get_ini_array( "test.ini" );

echo
"<pre>" ;
print_r( $A );
echo
"</pre>" ;
?>