Major advantages and disadvantages in using <?php , <? ,<script language=“php”> , <% in php

与世无争的帅哥 提交于 2019-12-22 09:40:08

问题


hi i saw there are four types of tags using in php .

<?php

?>

and

<?

?>

and

<script language=“php”>

</script>

and

<%

%>

and only the first one is using and others are deprecated .

i want to know the major advantages and disadvantages of each . and want to know why the 2 ,3 ,4 ones are deprecated .


回答1:


  1. Normal php tags
  2. XML tags
  3. HTML tags
  4. ASP tags

I think the disadvantage of deprecated tags is that they are common in other languages too, not only php.




回答2:


They are going to be deprecated in php6

Because these php short tags are not supported on all servers



来源:https://stackoverflow.com/questions/6909303/major-advantages-and-disadvantages-in-using-php-script-language-ph

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!