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,994 questions

51,939 answers

573 users

How to check if string contains in array with PHP

2 Answers

0 votes
function contains($s, array $arr) {
    foreach($arr as $w) {
        if (stripos($s, $w) !== false) return true;
    }
    return false;
}

$s1 = "php pro";
$s2 = "php programming";
$arr = array('java', 'c++', 'php programming', 'python');

if (contains($s1, $arr))
    echo "Contains\n";
else
    echo "Not contains\n";

if (contains($s2, $arr))
    echo "Contains\n";
else
    echo "Not contains\n";




/*
run:

Not contains
Contains

*/

 



answered Aug 12, 2020 by avibootz
0 votes
$s1 = "php pro";
$s2 = "php programming";
$arr = array('java', 'c++', 'php programming', 'python');

if (in_array($s1,  $arr))
    echo "Contains\n";
else
    echo "Not contains\n";

if (in_array($s2,  $arr))
    echo "Contains\n";
else
    echo "Not contains\n";




/*
run:

Not contains
Contains

*/

 



answered Aug 12, 2020 by avibootz

Related questions

1 answer 132 views
2 answers 139 views
2 answers 138 views
1 answer 169 views
...