PHP Classes

File: apache_test.php

Recommend this page to a friend!
  Classes of James Glenlake   Configurator   apache_test.php   Download  
File: apache_test.php
Role: Example script
Content type: text/plain
Description: Apache example script.
Class: Configurator
Handling Apache style configuration files
Author: By
Last change:
Date: 20 years ago
Size: 161 bytes
 

Contents

Class file image Download
<?php

require_once 'configurator.php';

$test = Configurator::open('/usr/local/apache2/conf/httpd.conf');
$test->parse();

print_r($test->getDirectives());

?>