您好,登錄后才能下訂單哦!
mysqli_stmt_execute?- 執(zhí)行準(zhǔn)備好的查詢
PHP4 | PHP5 | PHP7 |
---|---|---|
不支持 | 支持 | 支持 |
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ù) | 必需的 | 描述 |
---|---|---|
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);
mysqli_prepare()?- 準(zhǔn)備執(zhí)行一個SQL語句
mysqli_stmt_bind_param()?- 將變量綁定到準(zhǔn)備好的語句作為參數(shù)
mysqli_stmt_get_result()?- 從準(zhǔn)備好的語句獲取結(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)容。