|
发表于 2006-11-29 12:22:56
|
显示全部楼层
Post by hdecol
不会等效吧!
<?=$url?>会提示语法错误的。
我没有看书,我是自己尝试出来的。
天啊! 你以为你自己是神仙吗? 自己尝试出来? 你不看纸质书, 你至少也要看电子书(如官方文档)吧. 你这种学习方法见鬼去吧. 明明就是等价!
语法错误? 不是你见鬼, 就是你的机器见鬼了!
来自官方文档中文版:
例子 10-2. PHP 开始和结束标记
1. <?php echo 'if you want to serve XHTML or XML documents, do like this'; ?>
2. <script language="php">
echo 'some editors (like FrontPage) don\'t
like processing instructions';
</script>
3. <? echo 'this is the simplest, an SGML processing instruction'; ?>
<?= expression ?> This is a shortcut for "<? echo expression ?>"
4. <% echo 'You may optionally use ASP-style tags'; %>
<%= $variable; # This is a shortcut for "<% echo . . ." %> |
|