溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP mysqli_stmt_execute MySQLi

發(fā)布時間:2020-07-29 07:02:29 來源:網(wǎng)絡(luò) 閱讀:201 作者:web全棧 欄目:web開發(fā)

定義和用法

mysqli_stmt_execute?- 執(zhí)行準(zhǔn)備好的查詢

版本支持

PHP4PHP5PHP7
不支持支持支持

語法

mysqli_stmt_execute?(?mysqli_stmt?$stmt?)

執(zhí)行以前使用?mysqli_prepare()?函數(shù)準(zhǔn)備的查詢。 執(zhí)行后,任何存在的參數(shù)標(biāo)記將自動替換為適當(dāng)?shù)臄?shù)據(jù)。 如果該語句是UPDATE,DELETE或INSERT,則可以使用?mysqli_stmt_affected_rows()?函數(shù)確定受影響的行總數(shù)。 同樣,如果查詢產(chǎn)生結(jié)果集,則使用?mysqli_stmt_fetch()?函數(shù)。

注意:?使用mysqli_stmt_execute()時,必須在執(zhí)行任何其他查詢之前使用mysqli_stmt_fetch()函數(shù)來獲取數(shù)據(jù)。

參數(shù)

參數(shù)必需的描述
stmt由?mysqli_stmt_init()?返回的 statement 標(biāo)識。

返回值

成功時返回 TRUE, 或者在失敗時返回 FALSE。

示例

<?php
/*?Open?a?connection?*/
$link?=?mysqli_connect("localhost",?"my_user",?"my_password",?"world");
/*?check?connection?*/
if?(mysqli_connect_errno())?{
printf("Connect?failed:?%s\n",?mysqli_connect_error());
exit();
}
mysqli_query($link,?"CREATE?TABLE?myCountry?LIKE?Country");
mysqli_query($link,?"INSERT?INTO?myCountry?SELECT?*?FROM?Country");
$query?=?"SELECT?Name,?Code?FROM?myCountry?ORDER?BY?Name";
if?($stmt?=?mysqli_prepare($link,?$query))?{
/*?drop?table?*/
mysqli_query($link,?"DROP?TABLE?myCountry");
/*?execute?query?*/
mysqli_stmt_execute($stmt);
printf("Error:?%s.\n",?mysqli_stmt_execute($stmt));
/*?close?statement?*/
mysqli_stmt_close($stmt);
}
/*?close?connection?*/
mysqli_close($link);

相關(guān)函數(shù)

mysqli_prepare()?- 準(zhǔn)備執(zhí)行一個SQL語句

mysqli_stmt_bind_param()?- 將變量綁定到準(zhǔn)備好的語句作為參數(shù)

mysqli_stmt_get_result()?- 從準(zhǔn)備好的語句獲取結(jié)果集


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI