SQLには_NOT LIKE %string%
_があります
pHPでこれを行う必要があります。
if ($string NOT LIKE %Word%) { do something }
strpos()
でできると思う
しかし、方法を把握できませんでした..
有効なPHPで正確にその比較文が必要です。
if ($string NOT LIKE %Word%) { do something }
ありがとう
strpos
を使用します。文字列が見つからない場合はfalse
を返し、それ以外の場合はfalse
ではないものを返します。タイプセーフな比較(===
)0
が返される可能性があり、それは偽の値です。
if (strpos($string, $substring) === false) {
// substring is not found in string
}
if (strpos($string, $substring2) !== false) {
// substring2 is found in string
}
use
if(stripos($str,'job')){
// do your work
}
<?php
// Use this function and Pass Mixed string and what you want to search in mixed string.
// For Example :
$mixedStr = "hello world. This is john duvey";
$searchStr= "john";
if(strpos($mixedStr,$searchStr)) {
echo "Your string here";
}else {
echo "String not here";
}