thinkphp 数据库语句拼写

来源:互联网 发布:哈尔滨公交车查询软件 编辑:程序博客网 时间:2024/05/17 01:43
$tp = M("newstype");

foreach ($voList as $arr) {

   $typeNameList = $tp->where("id='".$arr['tid']."'")->field('typename')->find();
   $arr['typename'] =$typeNameList['typename'];
   array_push($cache, $arr);
}
$voList=null;
$voList=$cache;
0 0