PHP mysqli_stmt_init() 函數(shù)
PHP mysqli_stmt_init() 函數(shù)
初始化聲明并返回 mysqli_stmt_prepare() 使用的對象:
<?php // 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "連接 MySQL 失敗: " . mysqli_connect_error(); } // 修改數(shù)據(jù)庫連接字符集為 utf8 mysqli_set_charset($con,"utf8"); $country="CN"; // 創(chuàng)建預(yù)處理語句 $stmt=mysqli_stmt_init($con); if (mysqli_stmt_prepare($stmt,"SELECT name FROM websites WHERE country=?")) { // 綁定參數(shù) mysqli_stmt_bind_param($stmt,"s",$country); // 執(zhí)行查詢 mysqli_stmt_execute($stmt); // 綁定結(jié)果變量 mysqli_stmt_bind_result($stmt,$name); // 獲取值 mysqli_stmt_fetch($stmt); printf("%s 國家的網(wǎng)站為:%s",$country,$name); // 關(guān)閉預(yù)處理語句 mysqli_stmt_close($stmt); } mysqli_close($con); ?>
定義和用法
mysqli_stmt_init() 函數(shù)初始化聲明并返回 mysqli_stmt_prepare() 使用的對象。
語法
mysqli_stmt_init(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 返回一個對象。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 發(fā)送電子郵件
- PHP 異常處理
- PHP array_diff_key() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP extract() 函數(shù)
- PHP key() 函數(shù)
- PHP next() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP sort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO