Answers for "regex to check if href is present in string php"

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 "regex to check if href is present in string php"

Browse Popular Code Answers by Language