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

How to clean a string using PHP code by Anil Kumar Panigrahi

PHP Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  }

This code will replace the all special characters to string using following this php function.

I hope that it will be helpful.


1 Comment

how to convert feeds to html using javascript and php - ANIL KUMAR PANIGRAHI 's Blog · September 16, 2011 at 3:11 am

[…] 2) How to clean a string using php code http://www.anil2u.info/2010/02/how-to-clean-a-string-using-php-code/ 3) How to create rss feeds using php and mysql […]

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *