Why and What purpose use this <?= ?>
syntax in cakephp
code example
<h1>
Getting All bookmarks with certain Tags:
<?= $this->Text->toList( $tags ); ?>
</h1>
<section>
<?php foreach ( $bookmarks as $bookmark ) { ?>
<article>
<h4><?= $this->Html->link( $bookmark->title, $bookmark->url ); ?></h4>
<small><?= h( $bookmark->url ) ?></small>
<?= $this->Text->autoParagraph( $bookmark->description ); ?>
</article>
<?php } ?>
</section>