Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
$arr = array("php"=>"99", "c"=>"108", "c++"=>"31"); if (is_array($arr)) { echo "yes"; } else { echo "no"; } /* run: yes */
$arr = [4, 5, 7, 0, 1]; if (is_iterable($arr)) { echo "yes"; } else { echo "no"; } /* run: yes */