2014年11月19日 星期三

PHP if words in string

function contains($needle, $haystack)
{
    return strpos($haystack, $needle) !== false;
}
 
if(contains('bb', 'aa bb cc'))
{ 
    echo 'true';
}




References :
php - Check if string contains specific words? - Stack Overflow

沒有留言:

張貼留言