/ Published in: PHP
URL: http://www.bala-krishna.com/how-to-clean-special-characters-from-php-string
Expand |
Embed | Plain Text
<?php function just_clean($string) { // Replace other special chars '#' => '', '$' => '', '%' => '', '&' => '', '@' => '', '.' => '', '€' => '', '+' => '', '=' => '', '§' => '', '\\' => '', '/' => '', );</code> } "ÀÁÂÃÄÅ� áâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" ); // Remove all remaining other unknown characters return $string; } ?>
You need to login to post a comment.
