php - 一个函数里面用一个return 好 还是多个return 好?
巴扎黑
巴扎黑 2017-04-10 15:24:26
0
21
909
<?php


 function dmeo1($num)
 {
    if($num>0)
    {
        return true;
    }
    else
    {
        return false;
    }
 }




 function dmeo2($num)
 {    
    $status = null;

    if($num>0)
    {
       $status  = true;
    }
    else
    {
       $status  = false;
    }

    return $status;
 }
巴扎黑
巴扎黑

全部回覆(21)
Peter_Zhu

为什么你们都不给他的方法改个名?

function isNonNegative($num) {
    return $num > 0;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板