Answers for "php check if string is url or path"

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 check if string is url or path"

Browse Popular Code Answers by Language