0
這裏是我的功能:未定義的變量返回
function check1NumSeries($no_serie){
$reponse = $bdd->query('SELECT * FROM produit');
$check = "false";
while(($produit = $reponse->fetch())AND($check == "false")){
if ($produit[1] == $no_serie){
$check = "true";
$id_error = $produit[1];
}
} return array($check,$id_error);
};
當我做回陣列($支票,$ id_error),我有一個 「通知:未定義的變量:id_error在C:\ WAMP \ WWW \ fonction.php上線90」 它說
第90行=返回數組();
我不明白這是什麼問題?
並執行下面我的代碼正確,它好好嘗試塊,但我可以看到一個很大的橙色警告框此錯誤:/
當我做$ id_error = $ produit [1],它不創建變量? –
看來,如果條件不起作用 – turson