我正在使用腳本來創建其他表單行。 它爲特定文本字段循環$ i號 當我運行這個腳本時,偏移量是不確定的,因爲它不存在。 我需要使用if(isset())函數,但我不確定如何將它放在代碼中。 任何人都可以幫忙嗎?未定義的循環中的偏移量通知
for ($i=0; $i<100; $i++) {
if ($text['length'][$i] == "") $text['length'][$i] = "0";
if ($text['bredth'][$i] == "") $text['bredth'][$i] = "0";
if ($text['height'][$i] == "") $text['height'][$i] = "0";
if ($text['weight'][$i] == "") $text['weight'][$i] = "0.00";
所有起始與線 '如果' 顯示通知:
注意:未定義偏移:1 C:\ XAMPP \ htdocs中\ newparcelscript.php上線41
已解決 Infact我根本不需要和'如果'stament,因爲行的創建和值的設置一起運行。
for ($i=0; $i<100; $i++) {
$text['length'][$i] = "0";
$text['breadth'][$i] = "0";
$text['height'][$i] = "0";
$text['weight'][$i] = "0.00";
我建議嘗試$文字[$ i] [「重量」] – Aubin 2013-03-04 22:00:55