T_BOOLEAN_AND hatası?

2 Cevap php

Bu ile ne yanlış? Herkes bana lütfen yardım ..

if(stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false){
    @mysql_query("update table set dltur = '3' where id = '".$ppl[id]."'");

}
else {
//dont do anything
}

i T_BOOLEAN_AND hatası alıyorum.

2 Cevap

Tüm koşulu parantez gerekir:

if((stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false)){

Sonra if condition needs to be put in parentheses. But you’re already closing that part of the if ifadesinin tüm ifadesi ilk false:

if(stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false){
  ^       ^___________^          ^
  |______________________________|

Bu şekilde yazın:

if (stripos($nerde, $hf) !== false && stripos($nerde, $rs) !== false)

Yoksa bütün ifadenin etrafına parantez koymak (Ignacio Vazquez-Abrams suggested):

if ((stripos($nerde, $hf) !== false) && (stripos($nerde, $rs) !== false))