摘要: 使用sql语句执行select查询操作 $results = DB::select('select * from users where id = ?', [1]); foreach ($results as $res) { echo $res->name; } 返回结果为数组,数组中每一个值为一个 阅读全文
posted @ 2022-06-17 08:42 `奔跑的蜗牛 阅读(895) 评论(0) 推荐(0) 编辑