This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center




8年前关闭。




我在代码点火器内部工作,并认为这个 if 语句会通过,但它给了我一个意外的 = 错误。
if($title !=== FALSE){

} else{

}

最佳答案

应该:

if ($title !== FALSE)

关于php - 意外 = 错误消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8189438/

10-16 18:33