How to check if a string contains URL in PHP

3 Answers

0 votes
$s = "https://www.collectivesolver.com/ Programming & Software Q&A";
 
$slink = strpos($s, 'http') !== false &&
         strpos($s, '://.') !== false ||
         strpos($s, 'www') !== false;
 
if (isset($slink))
    echo "yes";
else
    echo "no";
     
     
 
/*
run:
 
yes
 
*/

 



answered Aug 14, 2020 by avibootz
edited Dec 6, 2024 by avibootz
0 votes
$s = "https://www.collectivesolver.com/ Programming & Software Q&A";

$reg_ex = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";

if (preg_match($reg_ex, $s, $url)) {
    print_r($url);
    echo "yes";
}
else
    echo "no";
    
    

/*
run:

Array
(
    [0] => https://www.collectivesolver.com/
    [1] => https
    [2] => /
)
yes

*/

 



answered Aug 14, 2020 by avibootz
0 votes
$s = "https://www.seek4info.com";

if (filter_var($s, FILTER_VALIDATE_URL)) {
    echo "yes";
} else {
    echo "no";
}

     
 
/*
run:
 
yes
 
*/

 



answered Dec 6, 2024 by avibootz

Related questions

1 answer 175 views
1 answer 140 views
140 views asked Aug 14, 2020 by avibootz
2 answers 799 views
1 answer 272 views
1 answer 239 views
2 answers 383 views
383 views asked May 24, 2014 by avibootz
...