3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test(array $array) { try { return is_associative_array($array); } catch (Exception $e) { echo $e->getMessage(); return 'error'; } } function is_indexed_array($array) { // your fav method here } ////non-arrays //assert(test(null)); //assert(test('')); //assert(test(0)); //assert(test(false)); //assert(test(new stdClass)); assert(test([]) === true); // empty array assert(test([null, 1, 2]) === true); // random test assert(test(['' => '']) === false); // random test assert(test([0 => '']) === true); // random test assert(test([1 => 'a']) === false); // random test // numeric keys assert(test(['', 'a', 'b']) === true); // proper indexed array assert(test([1 => 'a', 2 => 'b', 3 => 'c']) === false); // sequential but not 0-based assert(test([-1 => '', 0 => '', 1 => 'a']) === false); // sequential but not 0-based assert(test([0 => '', 2 => 'b', 3 => 'c']) === false); // 1 index missing assert(test([0 => '', 2 => 'b', 1 => 'a']) === false); // numeric but unordered // string keys assert(test(['' => '', 'a' => 'a', 'b' => 'b']) === false); // proper dictionary // mixed keys assert(test(['' => '', 1 => 'a', 2 => 'b']) === false); // first key string but rest not; also, associative even though '' == 0 assert(test([0 => '', 1 => 'a', 'b' => 'b']) === false); // first key numeric but rest not // numeric string keys assert(test([' 0' => '']) === false); // associative even though ' 0' == 0 assert(test(['00' => '']) === false); // associative even though '00' == 0 assert(test(['0*' => '']) === false); // associative even though '0*' == 0 assert(test(['0.0' => '']) === false); // associative even though '0.0' == 0.0 assert(test(['0x0' => '']) === false); // associative even though '0x0' == 0 assert(test(['0e0' => '']) === false); // associative even though '0e0' == 0
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function is_associative_array() in /in/l3jk4:7 Stack trace: #0 /in/l3jk4(28): test(Array) #1 {main} thrown in /in/l3jk4 on line 7
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Fatal error: Call to undefined function is_associative_array() in /in/l3jk4 on line 7
Process exited with code 255.

preferences:
211.1 ms | 402 KiB | 197 Q