這段代碼非常簡單。我試圖在表格中插入每個包含在變量$ str中的句子,用'@'分隔。問題是它不會停止在for循環中的數組的末尾,並不斷創建新的空白行。PHP不退出for循環或MySql以某種方式獲取太多請求
<?php
require_once("database/functions.php");
$str = "[email protected]@text...";
$arr = explode('@', $str);
var_dump($arr);
global $ConnectionClass;
$ConnectionClass->Connect();
for($i = 0; i < count($arr); $i++){
$check = $ConnectionClass->mysqli->query("INSERT INTO flow VALUES('', '$arr[$i]', '', '', '', '')");
if(!$check) die("Impossibile dialogare con il Database.");
}
$ConnectionClass->Close();
?>
謝謝。我一直都在面前,但我需要你的幫助。 –