如何使用CodeIgniter中的模板解析器将带有键的数组传递到视图中

时间:2018-07-04 09:02:52

标签: php codeigniter codeigniter-3

伙计们我想给我的变量1467860547.182543 error: string with embedded NUL: "\x13\x00\xf0\x13" 1467860547.182543 error: string without NUL terminator: "\x13\x00\xf0\x13\x02\xf0\x80\x02\x00\x00\xc0\x01\x00\x00\x00\x00\x87\x02" 带一个键,就像这样 $data使用CI的模板解析器库。如果我通过 键$data['student']无效,

现在的问题是 $data['student']$data['any_key'] = 'Any value';代码之前定义 (在下面的控制器中给出)被它替换。所以这意味着我将有 在第一行定义$data,然后我可以定义任何键 即$data = array()不会被替换。

这是我的控制人

data['any_value']='xyz'

这是我的视图

$result = $this->test->view_all('student',['STUD_Gender'=>'Male']);

$data['key'] = 'xyz'; //will get replaced

$data = array(
        'blog_title'   => 'School',
        'blog_heading' => 'Students',
        'blog_entries' => $result
        );

$data['key'] = 'xyz'; //wont get replaced

$this->parser->parse('test/header',$data);      
$this->parser->parse('test/index',$data);
$this->load->view('test/footer');

1 个答案:

答案 0 :(得分:0)

希望这对您有帮助:

像这样使用$data

// add key like this 
$data['student'] = 'xyz'; 

$data['blog_title'] = 'School'; 
$data['blog_heading'] = 'Students';

$result = $this->test->view_all('student',['STUD_Gender'=>'Male']);
$data['blog_entries'] = $result; 

$this->parser->parse('test/header',$data);      
$this->parser->parse('test/index',$data);
$this->load->view('test/footer');

您的视图应为:

// use key in view like this
<p>{student}</p>
<p>{blog_title}</p>
<h1>{blog_heading}</h1>
{blog_entries}
  <h3>{STUD_NAME}</h3>
  <p>{STUD_EMAIL}</p>
  <p>{STUD_GENDER}</p>
  <p>{STUD_PHONE}</p>                                
{/blog_entries}