我想建立一個PHP語句或「||」運營商,但似乎並不工作PHP如果語句與或運算符
$country_code ="example_country_code";
if ($country_code != 'example_country_code' || !clientIscrawler()) {
echo 'the script can be executed';
}
else {
echo 'skipping';
}
與給定的示例應回顯跳過,但不會發生那樣的。我做錯了什麼?
而*爲什麼*它應該回聲'跳過'?絕對不是因爲國家代碼。 – Jon
'clientIscrawler()'返回的值是多少? –
var_dump(!clientIscrawler());'? – Dev