php string contains

21.01.2020

You can use the strpos() function which is used to find the occurrence of one string inside another one:

$a = 'How are you?';  
if (strpos($a, 'are') !== false) {
     echo 'true'; 
}

21.01.2020



Zurück