php中,共有3个函数,其中绝大分数是相同的。如何能更科学的变成一个函数,从而搞效率。
方法一:将此3个函数变成一个,怎么实现呢?
方法二:奖此3个函数的执行体,就是输出的部分公共部分,单独做个函数。如何实现呢?????function wc1($sql){

$tb='';
$showArr=array();
$q=$this->getAll3($sql);
while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
$tb.='<tr><td>'.$r["number"].'</td>';
$tb.=isset($this->show["customer"])?'<td>'.$r["customer"].'</td>':NULL;
$tb.=isset($this->show["orderNo"])?'<td>'.$r["orderNo"].'</td>':NULL;
}
return $tb;
}
function wc2($sql){

$tb='';
$showArr=array();
$q=$this->getAll3($sql);
while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
$tb.='<tr><td>'.$r["number"].'</td>';
$tb.=isset($this->show["customer"])?'<td>'.$r["customer"].'</td>':NULL;
$tb.=isset($this->show["orderNo"])?'<td>'.$r["orderNo"].'</td>':NULL;
$tb.=isset($this->show["name"])?'<td>'.$r["name"].'</td>':NULL;
$tb.=isset($this->show["wc"])?'<td>'.$r["wc"].'</td>':NULL;//----------------此处有变化 }
return $tb;
}
function wc3($sql){

$tb='';
$showArr=array();
$q=$this->getAll3($sql);
while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
$tb.='<tr><td>'.$r["number"].'</td>';
$tb.=isset($this->show["customer"])?'<td>'.$r["customer"].'</td>':NULL;
$tb.=isset($this->show["orderNo"])?'<td>'.$r["orderNo"].'</td>':NULL;
$tb.=isset($this->show["name"])?'<td>'.$r["name"].'</td>':NULL;
$tb.=isset($this->show["fsaww"])?'<td>'.$r["sfs3"].'</td>':NULL;//----------------此处有变化 }
return $tb;
}

解决方案 »

  1.   

    function wc($sql){
      $tb='';
      $showArr=array();
      $q=$this->getAll3($sql);
      $dict = array('fsaww' => 'sfs3'); //这里是对照表
      while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
        $tb.='<tr><td>'.$r["number"].'</td>';
        foreach($this->show as $k) {
          if(isset($dict[$k])) $k = $dict[$k];
          $tb.='<td>'.$r[$k].'</td>';
        }
      }
      return $tb;        
    }
      

  2.   

    <?php
    function wc1($sql, $assoc = array()){ $tb='';
    $showArr = array();
    $q=$this->getAll3($sql);
    while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
    $tb.='<tr><td>'.$r["number"].'</td>';
    if(count($assoc)){
    foreach($keys as $k => $v){
    $tb .= isset($this->show[$k]) ?'<td>'.$r[$v].'</td>':NULL;
    }
    }
    }
    return $tb;
    }wc1($sql, array('customer' => 'customer', 'orderNo' => 'orderNo'));
    wc1($sql, array('customer' => 'customer', 'orderNo' => 'orderNo', 'name' => 'name', 'wc' => 'wc'));
    wc1($sql, array('customer' => 'customer', 'orderNo' => 'orderNo', 'name' => 'name', 'fsaww' => 'sfs3'));
      

  3.   


    function wc($sql, $action = '1')
    {
    $showArr=array();
    $q=$this->getAll3($sql);
    return wc_exec($q, $action);
    }function wc_exec($q, $action = '1')
    {
    $tb='';
    while ($r=$q->fetch_array(MYSQLI_USE_RESULT)) {
    $tb.='<tr><td>'.$r["number"].'</td>';
    $tb.=isset($this->show["customer"])?'<td>'.$r["customer"].'</td>':NULL;
    $tb.=isset($this->show["orderNo"])?'<td>'.$r["orderNo"].'</td>':NULL;
    if($action == '2' || $action == '3') { //具体条件自己分析
    $tb.=isset($this->show["name"])?'<td>'.$r["name"].'</td>':NULL;
    }

    //或者switch 看自己习惯
    if($action == '2') {
                    $tb.=isset($this->show["wc"])?'<td>'.$r["wc"].'</td>':NULL;//----------------此处有变化
    } else if($action == '3') {
                    $tb.=isset($this->show["fsaww"])?'<td>'.$r["sfs3"].'</td>':NULL;//----------------此处有变化
    }
    }

    return $tb;
    }简单改了下 楼主参考吧
      

  4.   

    多谢谢,
    可以把
        $tb.='<tr><td>'.$r["number"].'</td>';
        foreach($this->show as $k) {
          if(isset($dict[$k])) $k = $dict[$k];
          $tb.='<td>'.$r[$k].'</td>';
        }
    放在外面吗?因为,要多次执行的。
    就是动态生成一个
    $tb.=isset($this->show["customer"])?'<td>'.$r["customer"].'</td>':NULL;
                    $tb.=isset($this->show["orderNo"])?'<td>'.$r["orderNo"].'</td>':NULL;
                    $tb.=isset($this->show["name"])?'<td>'.$r["name"].'</td>':NULL;
                    $tb.=isset($this->show["wc"])?'<td>'.$r["wc"].'</td>':NULL;//-