Minwork Array
  • Minwork Array
  • Common methods
    • has
    • get → getNestedElement
    • set → setNestedElement
    • remove
    • clone
    • getKeysArray
  • Object oriented methods
    • General information
  • Traversing array
    • Finding
    • Iterating
  • Manipulating array
    • Mapping
    • Filtering
    • Grouping
    • Sorting
    • Computations
    • Flattening
  • Validating array
    • check
    • isEmpty
    • isNested
    • isArrayOfArrays
    • isAssoc
    • isUnique
    • isNumeric
    • hasKeys
  • Utility methods
    • pack
    • unpack
    • createMulti
    • forceArray
    • getDepth
    • random
    • shuffle
    • nth
    • getFirstKey
    • getLastKey
    • getFirstValue
    • getLastValue
Powered by GitBook
On this page

Was this helpful?

  1. Validating array

isAssoc

Definition

Arr::isAssoc(array $array, bool $strict = false): bool

Description

Check if array is associative

Examples

$array = ['a' => 1, 'b' => 3, 1 => 'd', 'c'];

Arr::isAssoc($array) -> true
Arr::isAssoc($array, true) -> true


$array = [1 => 1, 2 => 2, 3 => 3];

// There are no string keys
Arr::isAssoc($array) -> false

// However indexes are not automatically generated (starting from 0 up) 
Arr::isAssoc($array, true) -> true

// In this case keys are automatically generated
Arr::isAssoc([1, 2, 3], true) -> false

// Which is equal to this
Arr::isAssoc([0 => 1, 1 => 2, 2 => 3], true) -> false
PreviousisArrayOfArraysNextisUnique

Last updated 5 years ago

Was this helpful?