所以我用php编写了这段代码,但由于某些原因它无法工作,我不知道:

if(!empty($ccle))
{
    header("Location: http://google.com");
}

else
{
    header("Location: http://yahoo.com");
}

我想要的是:如果“ccle”字段是空的,那么转到google.com
或者如果“CCLE”字段不是空的(哪里是值),那么转到YaHoo.com。
如何做到这一点?

最佳答案

你得换一下…

if(!empty($ccle))
{
    // Go to Yahoo if $ccle is NOT empty
    header("Location: http://yahoo.com");
}
else
{
    // Else, go to Google
    header("Location: http://google.com");
}

只是为了详细说明。你的声明是说…
if($ccle IS NOT empty)

php中的感叹号是逻辑not运算符。

10-04 17:25