Login   Register  
PHP Classes
elePHPant
Icontem

File: example1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2006-10-12 12:09
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);

?>