The following script will be clean a string, this code fill helpful when going send a string to url that means using get method using php.

How to clean a string using PHP code by Anil Kumar Panigrahi
PHP Code
function CleaningAString($string)
{
$string = strtolower($string);
// Replace other special chars
$specialCharacters = array(
'#' => 'sharp',
'$' => 'dollar',
'%' => 'percent',
'&' => 'and',
'@' => 'at',
'€' => 'euro',
'+' => 'plus',
'=' => 'equals to',
'§' => 'paragraph',
);
while (list($character, $replacement) = each($specialCharacters)) {
$string = str_replace($character, '-' . $replacement . '-', $string);
}
return $string;
}
{
$string = strtolower($string);
// Replace other special chars
$specialCharacters = array(
'#' => 'sharp',
'$' => 'dollar',
'%' => 'percent',
'&' => 'and',
'@' => 'at',
'€' => 'euro',
'+' => 'plus',
'=' => 'equals to',
'§' => 'paragraph',
);
while (list($character, $replacement) = each($specialCharacters)) {
$string = str_replace($character, '-' . $replacement . '-', $string);
}
return $string;
}
This code will replace the all special characters to string using following this php function.
I hope that it will be helpful.
Pingback : how to convert feeds to html using javascript and php - ANIL KUMAR PANIGRAHI 's Blog