我想一步一步地做这些行动:
它正在运行,但我不知道我的代码是否正确/有效:
$update1 = $DB->query("UPDATE...");
if ($update1)
{
if (copy("..."))
{
if (unlink("..."))
{
$update2 = $DB->query("UPDATE ...");
}
}
}
是否可以这样使用if语句?
我发现它通常与 PHP运算符和 PHP MySQL select 一起使用,例如:
$select = $DB->row("SELECT number...");
if ($select->number == 2) {
...
}
答案 0 :(得分:1)
当然,你的ifs工作正常。看起来和流动更好的是使用这样的函数:
function processThings() {
// make sure anything you use in here is either passed in or global
if(!$update1)
return false;
if(!$copy)
return false;
if(!$unlink)
return false;
if(!$update2)
return false;
// you made it!
return true;
}
确保将$ DB称为全局变量,并传递所需的任何字符串等等