设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

如何成为一名优秀的工程师(语义篇)(4)

发布时间:2019-03-06 03:44 所属栏目:21 来源:佚名
导读:这还是函数吗?(不仅仅是语义,属于错误) /** *@methodmixedfetchList(string$sql,array$argv); */ classModel { publicfunction__construct($table) { } } functiongetUserList($startId,$lastId,$limit=100) { if(

这还是函数吗?(不仅仅是语义,属于错误)

  1. /** 
  2.  * @method mixed fetchList(string $sql, array $argv); 
  3.  */ 
  4. class Model 
  5.  
  6.     public function __construct($table) 
  7.     { 
  8.  
  9.     } 
  10.  
  11. function getUserList($startId, $lastId, $limit = 100) 
  12.     if ($lastId > 0) { 
  13.         $startId = $lastId; 
  14.     } 
  15.  
  16.     $sql = "select * from `user` where id > ? order by id asc limit ?,?"; 
  17.  
  18.     $model = new Model('user'); 
  19.     return $model->fetchList($sql, [intval($startId), intval($limit)]); 
  20. }  

$startId和$lastId两个参数重复

案例4

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读