-2
後,讓我們說我有一個開關設置不能執行任何命令開關設置在PHP
switch(telco) {
CASE "TELKOMSEL":
require($_SERVER['DOCUMENT_ROOT'].'/libs/functions/InjectMT_Telkomsel.php');
InjectMe($service, $reply, $mt_type, $service, $mtsid);
break;
CASE "INDOSAT":
require($_SERVER['DOCUMENT_ROOT'].'/libs/functions/InjectMT_Indosat.php');
InjectMe($service, $reply, $mt_type, $service, $mtsid);
break;
default:
print "undefined carrier";
}
不知怎的,其他PHP函數後不執行此開關。這是開關行爲還是我忘記了?
您是否嘗試過去除案件內的所有內容,而只是迴應一些內容? – FirstOne