Answers for "php regex validate if string contains url"

PHP
1

php check if string contains url

preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);
Posted by: Guest on August-28-2020

Code answers related to "php regex validate if string contains url"

Browse Popular Code Answers by Language