Search Results

1
vote

Does a native php (5+) function exist that does the following in 1 line?

You could return an ArrayObject, like so. <? class MyClass { public static function g …
9
votes

PHP Arrays: A good way to check if an array is associative or sequential?

Surely this is a better alternative. <?php $arr = array(1,2,3,4); $isIndexed = array_values($arr) === $arr; ?> …