Posts by Diefferson Santos • 31 points
1 post
-
1
votes12
answers5446
viewsA: How to remove accent in upload with php?
Follows function to remove accents using regular expression, much simpler and compact. <?php function removerAcentos( $string ) { $mapaAcentosHex = array( 'a'=> '/[\xE0-\xE6]/', 'A'=>…
phpanswered Diefferson Santos 31