isAssociative() 공개 정적인 메소드

Note: Empty arrays are not.
public static isAssociative ( array $array ) : boolean
$array array
리턴 boolean
예제 #1
0
파일: ArrTest.php 프로젝트: bolt/bolt
 public function testNonArraysAreNotIndexedOrAssociative()
 {
     $this->assertFalse(Arr::isIndexed('derp'));
     $this->assertFalse(Arr::isAssociative('derp'));
 }