PHP數(shù)據(jù)庫操作中,mysqli相對(duì)于mysql有很大的優(yōu)勢(shì),建議大家使用;之前我們有介紹過如何在PHP5中使用mysqli的prepare操作數(shù)據(jù)庫,使用mysqli更是支持多查詢特性,請(qǐng)看下面這段php代碼:
?php
$mysqli = new mysqli("localhost","root","","123456");
$mysqli->query("set names 'utf8'");
//多條sql語句
$sql = "select id,name from `user`;";
$sql .= "select id,mail from `user`";
if ($mysqli->multi_query($sql)){//使用multi_query()執(zhí)行一條或多條sql語句
do{
if ($rs = $mysqli->store_result()){//store_result()方法獲取第一條sql語句查詢結(jié)果
while ($row=$rs->fetch_row()){
var_dump($row);
echo "br>";
}
$rs->Close(); //關(guān)閉結(jié)果集
if ($mysqli->more_results()){ //判斷是否還有更多結(jié)果集
echo "hr>";
}
}
}while($mysqli->next_result()); //next_result()方法獲取下一結(jié)果集,返回bool值
}
$mysqli->close(); //關(guān)閉數(shù)據(jù)庫連接
?>
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接