PHP codeigniter如何制作变量数组

时间:2016-05-17 14:33:47

标签: php codeigniter

我在Codeigniter工作。我想知道如何创建变量数组。除了以下说明。

$this->data['country'] = $country;
$this->data['state'] = $state;
$this->data['city'] = $city;

2 个答案:

答案 0 :(得分:1)

如果你想在视图中显示一个数据数组,它应该是这样的:

控制器:

$data['data_array'] = array(
             'country' => $country,
             'state'   => $state,
             'city'    => $city);

传递给视图:

$this->load->view('your_view_name', $data);

在视图中:

echo $data_array['country'];

我还没有对它进行测试,但类似的东西应该可以解决问题。

答案 1 :(得分:0)

$var = array('country' => $country,
             'state'   => $state,
             'city'    => $city);

var_dump($var);