我一直想知道使用<? and <?php
有什麼區別。例如在這行代碼中。使用<?時的區別和<?php
function getWallboard()
{
$.ajax({
type: "POST",
url: "quality_control/qc_ajax.php",
data: "action=get_queue_totals&wallboard=<? echo $_REQUEST['wallboard'];?>",
success: function(msg){
$("#queue_nav").fadeIn("fast");
$("#queue_nav").html(msg);
}
});
$.ajax({
type: "POST",
url: "quality_control/qc_ajax.php",
data: "action=getQCWallboard&qctype=<?php echo $_REQUEST['qctype'];?>&wallboard=<? echo $_REQUEST['wallboard'];?>",
success: function(msg){
$("#wallboard").fadeIn("fast");
$("#wallboard").html(msg);
}
});
}
我一直在收到一些錯誤的例子。就像如果我更改<? to <?php or <?php to <?
,我的一些代碼塊不起作用。
這是我的第一篇文章。我希望我能得到關於使用這個的想法。
http://php.net /米anual/en/language.basic-syntax.phptags.php:'PHP也允許使用短標籤 and ?>(因爲它們只有在使用short_open_tag php.ini配置文件指令啓用時纔可用,或者如果PHP配置了 - -enable-short-tags選項。 ' – 2013-08-05 00:25:30
@Akam LOOOL at'...這是不鼓勵的......'PHP手冊正在和它的用戶玩遊戲:D – Songo