如何结束蛋糕php中的标记
在蛋糕教程中给出下面的span标签将由html helper形成,当文本被赋予null时。
<?php echo $this->Html->tag('span', null, array('class' => 'welcome'));?>
//Output
<span class="welcome">
但是,这里不知道结束span标签。如何给它html helper
<span class="welcome">
//inner elements
</span>
蛋糕php html helper中有什么东西可以关闭任何元素标签,比如
<?php echo $this->Html->tag('span', 'close') ?>
将输出为
</span> .
答案 0 :(得分:2)
你也可以这样做:
<?php
echo $html->tag("span", null);
... whatever ...
echo $html->tag("/span", null);
?>
答案 1 :(得分:1)
在调用""
方法时,您必须为第二个参数提供空字符串null
,而不是tag
。否则,它只会根据API docs打印开始标记。