-7
以下是我的一段代碼,它檢查2個變量是否相等。如果檢查不起作用
if($Layer_GISfileId == $index1 && $itemID_additionData == $index2)
{
// $formHandler->addFieldValue($assetID,$entryarray[$row]);
echo "\n-------------------------------Welcome---------------";
}
$Layer_GISfileId
具有值19和$index1
具有值19 $itemID_AdditionData
具有值2和$index2
具有值2兩者有相同的值,所以它應該打印「歡迎」。但它不起作用。
什麼'的var_dump($ Layer_GISfileId,$指數1,$ itemID_additionalData,$索引2)'輸出? – h2ooooooo
嘗試'if(($ Layer_GISfileId == $ index1)&&($ itemID_additionData == $ index2))' – user2092317
你能展示更多的代碼嗎?沒有人能夠僅用這個來幫助你。 – putvande