Posts by Bruno Thomasi • 11 points
1 post
-
1
votes7
answers11400
viewsA: How to validate phone in php
I made this implementation simple in a single line function: Here for phone of any kind: function validaTelefone($t){ return (bool) preg_match('/[0-9]{10,11}/', preg_replace('/\D/', '', $t)); } Here…