Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

maruerru
1 year ago
I think, this is the fastest polyfill:

<?php

if (!function_exists('array_is_list')) {
function
array_is_list(array $array)
{
return
$array === array_values($array);
}
}

?>

<< Back to user notes page

To Top