配列に問題があります。
$mini_one = array(
"in" => "#pp1",
"ot" => "the-r1",
"fn" => "the_r1()",
"js" => "$('the-r1').val($('#pp1').val());",
"ep" => "not tested"
);
$mini_two = array(
"in" => "#pp1",
"ot" => "the-r1",
"fn" => "the_r1()",
"js" => "$('the-r1').val($('#pp1').val());",
"ep" => "not tested"
);
//these are different but i just c/p it to show more than one array
//inside of $big_array
$big_array = array($mini_one,$mini_two);
しかし、is_array() で big_array をテストすると false が返され、foreach ループでも機能しません。
なぜそれが配列ではないのか、どうすればそれを正しい配列にすることができるのか、そして現在のように、どのようなタイプの構造と見なされるのかを知りたいです。