Bootstrap\View\Helper\BootstrapTrait::_isAssociativeArray PHP Метод

_isAssociativeArray() защищенный Метод

Check weither the specified array is associative or not.
protected _isAssociativeArray ( $array ) : true
$array The array to check.
Результат true if the array is associative, false otherwize.
    protected function _isAssociativeArray($array)
    {
        return array_keys($array) !== range(0, count($array) - 1);
    }