subj!
For example, I have two arrays:
$arr = array ("one", "two", "three");
and
$assoc_arr = array (
1 => "one",
2 => "two",
3 => "three"
);
How to find out for difference? I.e. bool is_array (mixed var) - is approach to both types of these arrays! 🙁 Any solutions?
Sorry for my english.