Skip to content

Instantly share code, notes, and snippets.

@zerobugs-oficial
Created June 18, 2020 16:08
Show Gist options
  • Save zerobugs-oficial/df41876413f1f7740a31dac80843f978 to your computer and use it in GitHub Desktop.
Save zerobugs-oficial/df41876413f1f7740a31dac80843f978 to your computer and use it in GitHub Desktop.
Remover caracteres não numéricos (texto) de uma string com PHP
<?php
function limpar_texto($str){
return preg_replace("/[^0-9]/", "", $str);
}
// Exemplo de Utilização
echo limpar_texto('Olá 1456Mundo!');
// vai retornar 1456
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment