1

冒着将自己归咎于骨头的风险,我仍然问这个问题:php中是否有类似“andif”的东西,或者我如何以优雅的方式解决以下问题?

场景:第一次测试,如果为真,进行一些处理(例如联系服务器),然后进行第二次测试,做某事......进行第三次测试,然后执行结果或 - 如果上述任何一项失败 - 总是输出同样的失败。

而不是每次都重复 else 语句...

if ( ....) { 
        contact server ...
        if (  ...  ){
        check ...       
            if (  ... )   {
                success  ;
            } else {  failure ...       }
        } else {  failure ...       }
} else {  failure ...       }

..我寻找类似的东西:

if ( ...) {
   do something...
   andif ( test ) {
      do something more ...
      andif ( test) {
         do }
else { 
   collective error }

在一个函数中,如果成功,我可以使用带有 return 的“fall through”模拟:

function xx {
 if {... if {... if {...  success; return; }}}
 failure
}

..但在主程序中?

4

3 回答 3

0

PHP 中没有andif运算符,但您可以使用 early-return(或“fail-fast”)习语,并在测试失败时返回失败。这样,您就不需要一堆elses:

function xx {
    if (!test1) {
        return failure;
    }

    someProcessing();
    if (!test2) {
        return failure;
    }

    // Etc...

    return success;
}
于 2017-12-23T08:59:56.090 回答
0

我会先检查错误:

if (not_true) {
    return;
}

connect_server; 

if (second_not_true) {
    return;
}

check;

等等...

您还可以使用逻辑运算符if在一条语句中进行多次检查。例如 :

if (test && second_test && third_test) { // means if test is true and if second_test is true and if third_test is true
    // do the stuff if success...
} else {
    // do the stuff if errors...
}
于 2017-12-23T09:01:14.503 回答
0

好吧,因为 php 中没有 andif 这样的东西,我认为唯一的方法是 - 屏住呼吸:GOTO(抱歉破坏了圣诞节......)

   if  ( ....) { 
            contact server ...
            if (  ...  ){
            check ...       
                if (  ... )   {
                    success  ;
                    goto success;
                 }}}
    failure;
    success:
    continue...

在我看来,其他一切都更加复杂。

于 2017-12-24T15:18:55.893 回答