Login   Register  
PHP Classes
elePHPant
Icontem

File: sample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Setec Astronomy  >  PHP Formatter  >  sample.php  >  Download  
File: sample.php
Role: Example script
Content type: text/plain
Description: Sample file
Class: PHP Formatter
Reformat PHP source code using the PHP tokenizer
Author: By
Last change:
Date: 2004-08-04 00:13
Size: 548 bytes
 

Contents

Class file image Download
<?php 
// include the phpformatter class
require_once ('phpformatter.class.php');
// create a new object 
$phpformatter = new phpformatter ();
// load PHP source code
$code file_get_contents ('phpformatter.class.php'); 
// get the formatted code
$formatted $phpformatter->format_string ($code);
// As an alternative it's possible to call the class methods as static
// phpformatter::format_string ($code);
// phpformatter::format_file ($filename);

// print the formatted code in a beautiful way
highlight_string ($formatted);
?>