The code below demonstrates how you can use PHP to replace all instances of the “é” character with the “e” character.
The Code
1 2 3 4 5 |
<?php // Replaces é with e, ie outputs tre $string = str_replace("é", "e", "tré"); echo $string; ?> |