PHP Classes

File: example.php

Recommend this page to a friend!
  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: 12 years ago
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();

?>