方法一:

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);
}