From f89055ae072ee8c7f18dbca66dfbbd21dda5c4d8 Mon Sep 17 00:00:00 2001 From: Renato Monteiro Batista <30217311+renatomb@users.noreply.github.com> Date: Sat, 17 Jul 2021 20:56:38 -0300 Subject: [PATCH] =?UTF-8?q?Mant=C3=A9m=20espa=C3=A7os=20em=20branco=20na?= =?UTF-8?q?=20higienliza=C3=A7=C3=A3o.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- funcoes_pix.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/funcoes_pix.php b/funcoes_pix.php index 33c3f01..964b716 100644 --- a/funcoes_pix.php +++ b/funcoes_pix.php @@ -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){