php - 一个函数里面用一个return 好 还是多个return 好?
巴扎黑
巴扎黑 2017-04-10 15:24:26
0
21
898
<?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;
 }
巴扎黑
巴扎黑

reply all(21)
Peter_Zhu

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

function isNonNegative($num) {
    return $num > 0;
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template