博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP学习之PHP代码的优化
阅读量:5085 次
发布时间:2019-06-13

本文共 659 字,大约阅读时间需要 2 分钟。

if代码块的优化
if(1===$orderState){
    $status='success';
}else{
    $status='error';
}
return $status;
简化成
$status='error';
if(1===$orderState){
    $status='success';
}
return $status;
使用三元运算符来替换if
if(!empty($_POST['action'])){
    $action=$_POST['action'];
}else{
    $action='defaule';
}
 
简化成
 
$action=!empty($_POST['action'])?$_POST['action']:'default';
中间结果赋值给变量
$str='this_is_test';
$res=implode('',array_map('ucfirst',explode('_',$str)));
 
优化成
 
$str='this_is_test';
$words=explode('_',$str);
$uWords=array_map('ucfirst',$words);
$res=impolde('',$uWords);
使用更加精悍短小的代码
  • 函数的最佳最大长度是50-150行代码,更容易理解也方便修改
  • 函数参数不超过7个
  • 只做一件事的函数更易于复用
 

转载于:https://www.cnblogs.com/shengChristine/p/10824367.html

你可能感兴趣的文章