Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Eper Kalman  >  Syntax Check  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example script
Class: Syntax Check
Check the syntax of PHP scripts
Author: By
Last change:
Date: 2012-12-09 04:35
Size: 164 bytes
 

Contents

Class file image Download
<?php
    
include('SyntaxCheck.class.php');

    
$check = new SyntaxCheck();
    
    
$check->directory('.');
    
    
$check->start();
    
    echo 
'<br><br>';
    
    
$check->details();

?>