Answers for "filter name in php"

PHP
1

php filter name

//You should use a regex filter with preg_match who returns 1 or 0

// this filter works for most of cases and will return 0 if not a regular string name

/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language