我在代码点火器网站上有一些关于HTML Helper的问题。
http://codeigniter.com/user_guide/helpers/html_helper.html
它显示了你可以回显doctype的地方但是我的想法是你必须像head标签,body标签和title标签一样做手动html代码,但它有meta标签。
那么这样做有什么意义呢?
<?php echo doctype(); ?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<?php
echo meta('description', 'My Great site');
echo meta('Content-type', 'text/html; charset=utf-8', 'equiv');
?>
</head>
<body>
</body>
</html>
答案 0 :(得分:1)
在模型中将这些元标记弹出到数组中并将其发送到您的视图。然后使用foreach输出你的meta标签,并将多行meta转换成一行php,你的meta标签可以在你的模型中轻松编辑。