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

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