无法在foreach循环外打印数组

时间:2015-05-05 11:54:06

标签: php

 $val = array();
 foreach ($value as $key) {
        $nested = $this->Mdl_mymodel->arr($key); 
        if($nested != NULL) {
                    $n = 0;
                    foreach ($nested as $nest) {
                            $n++;
                            $val[$n] = $nest->num; 
                    }
        }
         else {
                    $val = '';
            }

        print_r($val);  
}
print_r($val);

这里循环中的$ val被打印但是在它之外是空的。我想我错过了一些东西。请帮忙! 注意:我使用的是codeigniter。

1 个答案:

答案 0 :(得分:2)

$(".tabtwo-info .brokersector").click(function () {
    $(this).find('input:radio').attr('checked', true);
});