如何将数组键转换为int

时间:2019-05-14 05:57:53

标签: php laravel

嗨,我正在使用laravel,我有一个数组 这个数组有一些键,其中有些是字符串,我想将它们更改为int,而所有这些都将是int

$nativeContent = NativeContent::find($id);
$nativeContentView = $nativeContent->countViewNative()
            ->orderBy('created_at', 'ASC')
            ->get()
            ->groupBy(function($date) {
               return Carbon::parse($date->created_at)->format('m'); // grouping by months
            });

我的数组是这样的 enter image description here

1 个答案:

答案 0 :(得分:1)

尝试一下:

Object responseMock = serviceMock.methodService(10L, null, null);
Assert.assertNotNull(responseMock) --> It doesn't work