PHP mysqli_multi_query() 函數(shù)
PHP mysqli_multi_query() 函數(shù)
實(shí)例
執(zhí)行多個(gè)針對(duì)數(shù)據(jù)庫(kù)的查詢(xún):
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測(cè)鏈接
if (mysqli_connect_errno($con))
{
echo "連接到 MySQL 失敗: " . mysqli_connect_error();
}
$sql = "SELECT Lastname FROM Persons ORDER BY LastName;";
$sql .= "SELECT Country FROM Customers";
// 執(zhí)行多個(gè) SQL 語(yǔ)句
if (mysqli_multi_query($con,$sql))
{
do
{
// 存儲(chǔ)第一個(gè)結(jié)果集
if ($result=mysqli_store_result($con))
{
while ($row=mysqli_fetch_row($result))
{
printf("%sn",$row[0]);
}
mysqli_free_result($result);
}
}
while (mysqli_next_result($con));
}
mysqli_close($con);
?>
定義和用法
mysqli_multi_query() 函數(shù)執(zhí)行一個(gè)或多個(gè)針對(duì)數(shù)據(jù)庫(kù)的查詢(xún)。多個(gè)查詢(xún)用分號(hào)進(jìn)行分隔。
語(yǔ)法
mysqli_multi_query(connection,query);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
query | 必需。規(guī)定一個(gè)或多個(gè)查詢(xún),用分號(hào)進(jìn)行分隔。 |
技術(shù)細(xì)節(jié)
返回值: | 如果第一個(gè)查詢(xún)失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP echo 和 print 語(yǔ)句
- PHP 字符串
- PHP If Else 語(yǔ)句
- PHP 命名空間 namespace
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP 錯(cuò)誤處理
- PHP array_chunk() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_values() 函數(shù)
- PHP arsort() 函數(shù)
- PHP count() 函數(shù)
- PHP current() 函數(shù)
- PHP reset() 函數(shù)
- PHP HTTP 函數(shù)
- PHP Mail 函數(shù)
- PHP 雜項(xiàng) 函數(shù)