gpt4 book ai didi

zend-framework - Zend Framework 更改元标记

转载 作者:行者123 更新时间:2023-12-04 04:49:30 24 4
gpt4 key购买 nike

我在 layout.phtml 上有一些默认的元标记:

$this->headMeta()
->appendHttpEquiv('Content-Type', 'text/html;charset=utf-8')
->appendName('description', 'test test test')
->appendName('keywords', 'test test test')
->appendName('robots', 'index, follow')
->appendName('language', 'bg')
->appendName('googlebot', 'index, follow, archive')
->appendName('tags', 'test test test');

如何从 View 中向现有添加更多关键字和描述,我试试这个(/views/scripts/index/news.phtml:
echo $this->headMeta()
->appendName('description', 'new desc')
->appendName('keywords', 'new keys');

但不工作。 Zend 创建了两个描述和两个关键字标签。

我想向现有的添加新的关键字和描述。经验。如果在 layout.phtml 我生成:
$this->headMeta()
->appendName('keywords', 'music, song, mp3')

在/views/scripts/index/news.phtml 我想添加新关键字,添加到 layout.phtml 中已经存在的关键字。

最佳答案

不要在 View 脚本中回显 headMeta() 助手 - 这就是创建副本的原因。只需调用它:

<?php
$this->headMeta()
->appendName('description', 'new desc')
->appendName('keywords', 'new keys');
?>

关于zend-framework - Zend Framework 更改元标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17636802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com