我在codeigniter工作,我试图使用动态 meta标记,但元标记不为我工作,这是我的代码在控制器
$id = $this->uri->segment(2);
$data['id'] = $id;
$data['metas'] = array(
array('name'=>'description', 'content'=>'A short but sweet DEFAULT description of this fine site'),
array('name' =>'keywords', 'content'=>'some awesome DEFAULT keywords for those rascally web crawlers')
);
以下是我的观点
<?php
foreach($metas as $meta)
{?>
<meta name="<?=$meta['name']?>" content="<?=$meta['content']?>" />
<?php }?>
1条答案
按热度按时间p8h8hvxi1#
只需进入codeigniter 3 system/helpers/html_helper.php并复制该函数,然后将其放入您自己的库中