The "<?" tag is a shorthand version of "<?php", and "<?=" is a shorthand version of "<?php echo". The = sign basically means whatever is returned should be echoed.

Kexiao Liao wrote:
I am new to Zend Framework, what does the tag("<?=") in index.phtml template
file mean? It seems the tag("<?=") is not a php standard tag. Does anyone
can give more detail explaination if this tag? Thanks

Kevin

<? foreach ($this->tables as $tableName): ?>
            <li>
                 "/zfgrid/grid/show/table/<?= $tableName ? ">
                    <?= $tableName ?>
</li>
<? endforeach; ?>

--
Jack

Reply via email to