I want to replace all special character (in array), I used htmlspecialchars, but it does not work I found empty result !!
this is my instruction:
str_replace( array('è','é','ê','ë'),
array('e','e','e','e'),
htmlspecialchars(strtolower("Elément")) );
thank's for helping...