Skip to content

Commit

Permalink
Mantém espaços em branco na higienlização.
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomb committed Jul 17, 2021
1 parent e0948fa commit f89055a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions funcoes_pix.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ function remove_char_especiais($txt){
/*
# Esta função retorna somente os caracteres alfanuméricos (a-z,A-Z,0-9) de uma string.
# Caracteres acentuados são convertidos pelos equivalentes sem acentos.
# Emojis são removidos.
# Emojis são removidos, mantém espaços em branco.
#
# Autor: Eng. Renato Monteiro Batista
*/
return preg_replace('/\W/','',remove_acentos($txt));
return preg_replace('/\W /','',remove_acentos($txt));
}

function remove_acentos($texto){
Expand Down

0 comments on commit f89055a

Please sign in to comment.