Login   Register  
PHP Classes
elePHPant
Icontem

File: funny_example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Martin Lebert  >  Funny Strings  >  funny_example.php  >  Download  
File: funny_example.php
Role: Example script
Content type: text/plain
Description: example file
Class: Funny Strings
Converts texts to h4xx0r, eLiTe or shuffled style
Author: By
Last change:
Date: 2004-11-13 10:51
Size: 1,119 bytes
 

Contents

Class file image Download
<?php

/**********************************************************************************
****** class name : funny_strings                           
****** author     : Martin Lacher                                                                            
**********************************************************************************/

require_once("funny_strings.php");

$fs = new funny_string;

/*****************************************************************
******  for documentation see shuffle.php                   ******
******************************************************************
*
*  echo $fs->shuffle_word("Metallica");
*
*  echo $fs->shuffle_text("Metallica is a famous metal band from Los Angeles.");
*
*  echo $fs->elite("Metallica is a famous metal band from Los Angeles.");
*
*  echo $fs->half_elite("Metallica is a famous metal band from Los Angeles.");
*
*  echo $fs->h4xx0r("Metallica is a famous metal band from Los Angeles.");
*
*****************************************************************/

echo $fs->shuffle_text("Metallica is a famous metal band from Los Angeles.");

?>