How to end the tag in cake php
It is given in cake tutorial the below span tag will be formed by html helper, when text is given null.
<?php echo $this->Html->tag('span', null, array('class' => 'welcome'));?>
//Output
<span class="welcome">
But, here no idea about ending span tag.How can it be given html helper
<span class="welcome">
//inner elements
</span>
Is there anything in cake php html helper to close any element tags like
<?php echo $this->Html->tag('span', 'close') ?>
will output as
</span> .