What does <?= mean?
Collapse
This topic is closed.
X
X
-
lawrence kTags: None -
Ken Robinson
Re: What does <?= mean?
lawrence k wrote:
It's short had for the echo verb.I see stuff like
>
<?= $_REQUEST["home"]; ?>
Ken
-
Erwin Moller
Re: What does <?= mean?
lawrence k wrote:
Hi,
<?= only works if short_open_tags is set to true.
In that case it is translated to:
<? echo
Regards,
Erwin Moller
Comment
-
william
Re: What does <?= mean?
On Tue, 02 Jan 2007 17:02:43 +0100, Erwin Moller wrote:
i heard that the syntax "<?" is obsolete/depreciated<?= only works if short_open_tags is set to true.
In that case it is translated to:
<? echo
>
Regards,
Erwin Moller
true/false ?
Comment
-
Erwin Moller
Re: What does <?= mean?
william wrote:
True, support for it will possibly (for sure??) be dropped in futureOn Tue, 02 Jan 2007 17:02:43 +0100, Erwin Moller wrote:
>>><?= only works if short_open_tags is set to true.
>In that case it is translated to:
><? echo
>>
>Regards,
>Erwin Moller
i heard that the syntax "<?" is obsolete/depreciated
true/false ?
releases if I understood well.
So it is better to switch <?php right away.
I did, with some reluctance since I always used the shorthand.
Regards,
Erwin Moller
Comment
-
Sandman
Re: What does <?= mean?
In article <1167753127.525 897.93990@42g20 00cwt.googlegro ups.com>,
"lawrence k" <lkrubner@geoci ties.comwrote:
Yep.
--
Sandman[.net]
Comment
Comment