Tools, FAQ, Tutorials:
Replacing Characters in a String in PHP
How To Replace a Group of Characters by Another Group?
✍: FYIcenter.com
While processing a string, you may want to replace a group of special characters with some other characters. For example, if you don't want to show user's email addresses in the original format to stop email spammer collecting real email addresses, you can replace the "@" and "." with something else. PHP offers the strtr() function with two format to help you:
Here is a PHP script on how to use strtr():
<?php
$email = "joe@dev.fyicenter.com";
$map = array("@" => " at ", "." => " dot ");
print("Original: $email\n");
print("Character replacement: ".strtr($email, "@.", "#_")."\n");
print("Substring replacement: ".strtr($email, $map)."\n");
?>
This script will print:
Original: joe@dev.fyicenter.moc Character replacement: joe#dev_fyicenter_com Substring replacement: joe at dev dot fyicenter dot com
To help you to remember the function name, strtr(), "tr" stands for "translation".
⇒ Understanding PHP Arrays and Their Basic Operations
⇐ Applying UUEncode to a String in PHP
2016-10-13, ∼2379🔥, 0💬
Popular Posts:
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
Where to find tutorials on HTML language? I want to know how to learn HTML. Here is a large collecti...