我一直试图让这个PHP功能暂时工作但没有成功。出于某种原因,每次运行时,我的mysql都会出现“命令不同步,你现在无法运行此命令”错误。我使用的技术与我在其他所有php项目中使用的技术相同,即调用mysqli-> next_result,以便我可以避免该错误。但是,当我在这里称之为它似乎没有效果。
if($questionType == 5){
global $To;
$to="znielsen@gbpi.net";
$subject = "txtoutage session completed";
$message ="Session completed by: ".$number." \n on: ".date("Y-m-d H:i:s")." \n";
if($sid = $mysqli->query("CALL GetSessionFromPhoneNumProc('$number')")){
$sids = $sid->fetch_assoc();
$sid->free();
$sids = $sids['sid'];
$mysqli->close();
$res->free();
if($res = $mysqli->query("CALL GetAnswersFromSession('$sids')")){
while($row = $res->fetch_assoc()){
$mysqli->next_result();
$qid = $row['Question_ID'];
$question = $mysqli->query("SELECT Question_Text FROM questions WHERE Question_ID = '$qid'");
$question = $question->fetch_assoc();
$question = $question['Question_Text'];
if($row['Answer_Text'] == null){
$displayText = $row['Answer_Body'];
}
else{
$displayText = $row['Answer_Text'];
}
$message = $message.$question.": ".$displayText." \n";
}
}
else{
$log->logError("mysql error sess: (" . $mysqli->errno . ") " . $mysqli->error);
}
}
else{
$log->logError("mysql error answers: (" . $mysqli->errno . ") " . $mysqli->error);
}
$from = "txtoutage@gbpi.net";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
}
答案 0 :(得分:0)
从您的代码中删除对mysqli_next_result
的调用(此行:$mysqli->next_result();
)。
正如PHP文档中所解释的那样,mysqli_next_result准备了之前调用mysqli_multi_query()的下一个结果集,可以通过mysqli_store_result()或mysqli_use_result()来检索。
由于您未使用mysqli_multi_query()
,,您不需要也不得致电mysqli_next_result
。
在您的代码中,使用mysqli_fetch_assoc
检索下一个结果,并且在每次调用mysqli_query
后您已经在使用此函数。