除了使用 ? 表示参数绑定外,你还可以使用命名绑定的形式来执行一个查询:
?
$results = DB::select('select * from users where id = :id', ['id' => 1]);
关闭