开发者

shorter way of echoing a variable in php?

开发者 https://www.devze.com 2022-12-10 03:32 出处:网络
In the last two days, ive run across code that has php echo\'d variables displayed like this <?=$selected?>开发者_开发问答

In the last two days, ive run across code that has php echo'd variables displayed like this

<?=$selected?>开发者_开发问答

What exactly is going on and why? What is this called?


That's called a Short Tag. It's a shortcut to <?php echo $selected;?>. It is widely adopted, but there's a lot of literature out there that does not recommend its use as it leads to less portable code (many PHP installations do not have short tags enabled). I happen to agree, just take a look at this user's woes. Also, see:

Are PHP Short Tags acceptable to use?

0

精彩评论

暂无评论...
验证码 换一张
取 消