|
很多朋友说得写CI的扩展才能生成静态页,其实用CI内置的方法直接就可以生成静态页,又快又方便,也不用扩展。
例子:
先做个视图文件welcome_message,在视图文件里输出点变量,然后执行控制器里的方法。
function creat()
{
$data['base'] = $this->base;
$data['ur']=array('id'=>'123', 'name'=>'liuyue');
$string = $this->load->view('welcome_message',$data, true);
$this->load->helper('file');
$data = $string;
if ( ! write_file('1.html', $data))
{
echo "生成静态页成功";
}
else
{
echo '失败了';
}
} |
|