check string contains url in php code example
Example 1: php if url contains
if(strpos($_SERVER['REQUEST_URI'], "string")) {
...
}
Example 2: php check if string contains url
preg_match('/(http|ftp|mailto)/', $string, $matches);
var_dump($matches);