gpt4 book ai didi

php - 如何更改 zend 框架布局中的元标记

转载 作者:可可西里 更新时间:2023-10-31 22:54:38 26 4
gpt4 key购买 nike

所以我在 layout.phtml 上使用

设置了一些默认元标记
$this->headTitle() and $this->headMeta()->appendName()

并在 layout.phtml 的标题处回显

我的问题是:如何从 View 文件中更改这些默认元标记以替换它们?

我尝试使用:

$this->headMeta()->appendName() or setName()

它不会替换旧的默认元标记,而是创建一个全新的元标记。我该如何替换它们?

最佳答案

我刚刚对此进行了测试,setName() 应该可以工作:

<?php $this->headMeta()->setName('keywords', 'test'); ?>
<?php $this->headMeta()->setName('keywords', 'test'); ?>

结果:

<meta name="keywords" content="another test" >  

同时:

<?php $this->headMeta()->setName('keywords', 'test'); ?>
<?php $this->headMeta()->appendName('keywords', 'another test'); ?>

结果:

<meta name="keywords" content="test" > 
<meta name="keywords" content="another test" >

关于php - 如何更改 zend 框架布局中的元标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5349413/

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