gpt4 book ai didi

CakePHP HTML 链接

转载 作者:行者123 更新时间:2023-12-04 16:55:10 31 4
gpt4 key购买 nike

我正在尝试将 CakePHP HTML Linker 用于以下代码

<li class="iAdd"><a href="add"><span>Add Cuisine</span></a></li>

由于 span 标签需要在 a 标签内。我无法根据需要获得输出。关于如何完成它的任何建议?

最佳答案

禁用链接代码中的转义选项,如下所示:

<li class="iAdd">
<?php echo $this->Html->link(
'<span>Add Cuisine</span>',
array('action' => 'add'),
array('escape' => false) // This line will parse rather then output HTML
); ?>
</li>

关于CakePHP HTML 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8588591/

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