PHP Classes

File: funny_example.php

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

?>