时间:2021-12-20 10:43:07 | 栏目:PHP代码 | 点击:次
方法一:
return DB::table('game_matchperiod')->select('starttime')->where('Type',$type)->get() ->map(function ($value) {return (array)$value;})->toArray();
方法二:
public function objToArr($object) { //先编码成json字符串,再解码成数组 return json_decode(json_encode($object), true); }