使用 Code Igniter 的 HTML 帮助器

发布于 2024-12-10 18:53:53 字数 654 浏览 0 评论 0原文

我有一些关于 code igniter 网站上的 HTML Helper 的问题。

http://codeigniter.com/user_guide/helpers/html_helper.html

它显示您的位置可以回显 doctype 但我的想法是你必须手动执行 html 代码,例如 head 标签、body 标签和 title 标签,但它有元标签。

那么这样做有什么意义呢?

<?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>

I have a few questions regarding the HTML Helper on the code igniter website.

http://codeigniter.com/user_guide/helpers/html_helper.html

It shows where you can echo out the doctype but then my thinking is you'd have to do the manual html code for like the head tag, body tag and title tag but it has the meta tag.

So what would be the point in doing this?

<?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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪都笑了 2024-12-17 18:53:53

在模型中,将这些元标记弹出到数组中并将其发送到您的视图。然后使用 foreach 输出您的元标记,哇哦,许多行元变成一行 php,并且您的元标记可以轻松地在您的模型中编辑。

In a model pop those meta tags into an array and sent it to your view. Then use a foreach to output your meta tags, and wha-la many lines of meta turn into one line of php, and your meta tags can easily be edited in your model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文