Answers for "php code to check if a text is a link"

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 code to check if a text is a link"

Browse Popular Code Answers by Language