Answers for "php check if url has get value"

PHP
6

check if valid url php

filter_var($url, FILTER_VALIDATE_URL);
Posted by: Guest on April-16-2021
2

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 url has get value"

Browse Popular Code Answers by Language