Codeigniter 2.2.2 /如何在从控制器传入的“视图”中打印数组数据?

时间:2015-05-13 04:57:43

标签: php codeigniter-2

我没有收到任何我从控制器传递给我的视图的“国家/地区”数据。这是我的控制器:

    public function country_destination()
{

    $this->load->model('model_admin');
    //Calling the get_unique_states() function to get the arr of state. Model already loaded.
    $arrCountries = $this->model_admin->get_unique_countries();

    //Getting the final array in the form which I will be using for the form helper to create a dropdown.
    foreach ($arrCountries as $countries) {
        $arrFinal[$countries->country] = $countries->country;
    }
    $data['countries'] = $arrFinal;

            // Basis page data
            $data = array(
                'templateVersion'   => 'template1',
                'headerVersion'     => 'header1',
                'css'               => '<link rel="stylesheet" href="/css/compiled/index.css" type="text/css" media="screen" />
                                       <link rel="stylesheet" type="text/css" href="/css/lib/animate.css" media="screen, projection" />',
                'navBarVersion'     => 'navbar1',
                'main_content'      => 'detail-wrap/admin/country_destination', 
                'page_title'        => 'example.com - App',
                'footerVersion'     => 'footer1'
                );
            //echo "here";
            $this->load->view('detail-wrap/includes/template1', $data);      
}

在我看来,我想转储包含$ data [countries]的$ data的内容。这将有助于我确定是否确实传递了“某些”数据,并有助于进一步调试。

我试过print_r($ data);但我得到一个'未定义的变量:数据'错误。

2 个答案:

答案 0 :(得分:2)

注意: $data数组的键被转换为变量

你必须做

print_r($countries);  //to print the countries
在您的视图中

你必须给这个数组提供一些key

 $data['somekey'] = array(
                'templateVersion'   => 'template1',
                'headerVersion'     => 'header1',
                'css'               => '<link rel="stylesheet" href="/css/compiled/index.css" type="text/css" media="screen" />
                                       <link rel="stylesheet" type="text/css" href="/css/lib/animate.css" media="screen, projection" />',
                'navBarVersion'     => 'navbar1',
                'main_content'      => 'detail-wrap/admin/country_destination', 
                'page_title'        => 'example.com - App',
                'footerVersion'     => 'footer1'
                );

借助密钥在视图中访问此数据。 CI将密钥作为普通的php变量发送到view

因此,从视图中您可以访问print_r($somekey)

答案 1 :(得分:0)

在您的视图文件中,您可以这样写,以结构化格式显示数组数据。

echo "<pre>";

print_r($countries);