Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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 155 views
1 answer 118 views
118 views asked Aug 14, 2020 by avibootz
2 answers 762 views
1 answer 228 views
1 answer 179 views
2 answers 344 views
344 views asked May 24, 2014 by avibootz
...