3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test($array) { try { return isDictionary($array); } catch (Exception $e) { echo $e->getMessage(); return 'error'; } } function isDictionary($array) { foreach($array as $key => $value) { return ! is_int($key); } return false; } $arr = 0; var_dump(test($arr));

preferences:
27.54 ms | 402 KiB | 5 Q