$array = ['a'=>1,'b'=>3,1=>'d','c'];Arr::isAssoc($array)-> trueArr::isAssoc($array, true)-> true$array = [1=>1,2=>2,3=>3];// There are no string keysArr::isAssoc($array)-> false// However indexes are not automatically generated (starting from 0 up) Arr::isAssoc($array, true)-> true// In this case keys are automatically generatedArr::isAssoc([1,2,3], true)-> false// Which is equal to thisArr::isAssoc([0=>1,1=>2,2=>3], true)-> false