PHP Classes

File: example1.php

Recommend this page to a friend!
  Classes of Vagharshak Tozalakyan   Project Estimator   example1.php   Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Sample
Class: Project Estimator
Get the number of lines and characters from files
Author: By
Last change:
Date: 17 years ago
Size: 248 bytes
 

Contents

Class file image Download
<?php

 
require_once 'estimator.class.php';

 
$pe = new ProjectEstimator();

 
$pe->root = 'C:/shttps/www/library/';
 
$pe->check_subdirs = true;
 
$pe->filters = array("#\.php#i", "#\.php4#i", "#\.php5#i");

 
$pe->getInfo(true);

?>