Important alert: (current site time 7/15/2013 10:57:52 AM EDT)
 

VB icon

A 1337 Phrase Maker

Email
Submitted on: 10/8/2002 6:02:09 PM
By: Jason DeLuca  
Level: Intermediate
User Rating: By 3 Users
Compatibility: PHP 3.0, PHP 4.0
Views: 14372
(About the author)
 
     This Script Turns Phrases Into A 1337 Phrase. Most People will be unfamiliar with the 1337 language, but if you use this script enouh, you will learn.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
				
//**************************************
// Name: A 1337 Phrase Maker
// Description:This Script Turns Phrases Into A 1337 Phrase. Most People will be unfamiliar with the 1337 language, but if you use this script enouh, you will learn.
// By: Jason DeLuca
//
//This code is copyrighted and has// limited warranties.Please see http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=769&lngWId=8//for details.//**************************************

<?
if ($_POST['word'])
{
$_POST["word"] = str_replace("a","4",$_POST["word"]); // set the value of each letter
	$_POST["word"] = str_replace("e","3",$_POST["word"]);
	$_POST["word"] = str_replace("g","6",$_POST["word"]);
	$_POST["word"] = str_replace("i","1",$_POST["word"]);
	$_POST["word"] = str_replace("l","1",$_POST["word"]);
	$_POST["word"] = str_replace("o","0",$_POST["word"]);
	$_POST["word"] = str_replace("q","9",$_POST["word"]);
	$_POST["word"] = str_replace("s","5",$_POST["word"]);
	$_POST["word"] = str_replace("t","7",$_POST["word"]);
	$_POST["word"] = str_replace("A","4",$_POST["word"]);
	$_POST["word"] = str_replace("E","3",$_POST["word"]);
	$_POST["word"] = str_replace("G","6",$_POST["word"]);
	$_POST["word"] = str_replace("I","1",$_POST["word"]);
	$_POST["word"] = str_replace("L","1",$_POST["word"]);
	$_POST["word"] = str_replace("O","0",$_POST["word"]);
	$_POST["word"] = str_replace("Q","9",$_POST["word"]);
	$_POST["word"] = str_replace("S","5",$_POST["word"]);
	$_POST["word"] = str_replace("T","7",$_POST["word"]);
	$_POST["word"] = str_replace("you","j00",$_POST["word"]);
	$_POST["word"] = str_replace("You","j00",$_POST["word"]);
	?>
<h2>Here it is <font color="red">1337ed</a></h2>
<br><font color="black"><b><? echo $_POST["word"]; ?></b></a>
<?
}
else
{
	?>
	<html>
	<head>
	<title>1337</title>
	</head>
	<body>
	<h1>1337 Phrase Maker</h1>
	<form method="post" action="<?php echo $_SERVER['PHP_SELF']?>">
	Enter What You Would Like turned into 1337
	<br><input type="text" name="word">
	<br><table><td><input type="reset" Value="Clear It"></td><td><input type="Submit" value="1337 	It"></td><tr></table>
	</form>
	<br>
	<?
}
?>
</body>
</html>


Other 1 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
10/9/2002 5:01:42 PMCharles Chadwick

Despite the fact that I'm not a big fan of 1337 language, an easier way to do this might be like so:

$replaceArray = Array("a"=>"4", "e"=>"3", "g"=>"6", "i"=>"1", "l"=>"1", "o"=>"0", "q"=>"9", "s"=>"5",
"t"=>"7", "A"=>"4", "E"=>"3", "G"=>"6", "I"=>"1", "L"=>"1", "O"=>"0", "Q"=>"9",
"S"=>"5", "T"=>"7", "you"=>"j00", "You"=>"j00");

$word = $_POST["word"];

foreach($replaceArray as $key=>$value)
{
$word = str_replace($key, $value, $word);
}

echo $word;

Associative arrays are your friend.
(If this comment was disrespectful, please report it.)

 
10/9/2002 5:04:21 PMCharles Chadwick

Sorry bout the formatting. That's PSC for you.
(If this comment was disrespectful, please report it.)

 
10/9/2002 6:39:53 PMJason DeLuca

:-P
(If this comment was disrespectful, please report it.)

 
1/8/2003 11:16:59 AMSam Moses Mz

1 d0n'7 637 17.

(If this comment was disrespectful, please report it.)

 
2/24/2003 2:10:35 AM

It donesn't work
(If this comment was disrespectful, please report it.)

 
12/14/2003 1:31:46 AMJamie K

lol... nubs... leet language is so old...
(If this comment was disrespectful, please report it.)

 
1/14/2004 2:02:59 AM

hi... jamie... k... :)...
(If this comment was disrespectful, please report it.)

 
2/22/2005 3:35:28 PMCarlton Cook

Leet is pointless, but nevertheless, good job.
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.