PHP mysqli stmt_init()関数
例 - オブジェクト指向スタイル
ステートメントを初期化し、stmt_prepare()で使用するオブジェクトを返します。
<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");
if ($mysqli -> connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
exit();
}
$city="Sandnes";
// Create a prepared statement
$stmt = $mysqli -> stmt_init();
if ($stmt -> prepare("SELECT District FROM City WHERE Name=?")) {
// Bind parameters
$stmt -> bind_param("s", $city);
// Execute query
$stmt -> execute();
// Bind result variables
$stmt -> bind_result($district);
// Fetch value
$stmt -> fetch();
printf("%s is in district %s", $city, $district);
// Close statement
$stmt -> close();
}
$mysqli -> close();
?>
下部の手続き型スタイルの例を見てください。
定義と使用法
stmt_init() / mysqli_stmt_init()関数はステートメントを初期化し、mysqli_stmt_prepare()に適したオブジェクトを返します。
構文
オブジェクト指向スタイル:
<div>$mysqli -> stmt_init()</div>
手続き型のスタイル:
<div>mysqli_stmt_init(<em>connection</em>)</div>
パラメータ値
パラメータ |
説明 |
---|---|
connection | Required 使用するMySQL接続を指定します |
Technical Details
Return Value: | オブジェクトを返します |
---|---|
PHP バージョン: |
5+ |
例 - 手続き型スタイル
ステートメントを初期化し、mysqli_stmt_prepare()で使用するオブジェクトを返します。
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
exit;
}
$city="Sandnes";
// Create a prepared statement
$stmt = mysqli_stmt_init($con);
if (mysqli_stmt_prepare($stmt, "SELECT District FROM City WHERE Name=?")) {
// Bind parameters
mysqli_stmt_bind_param($stmt, "s", $city);
// Execute query
mysqli_stmt_execute($stmt);
// Bind result variables
mysqli_stmt_bind_result($stmt, $district);
// Fetch value
mysqli_stmt_fetch($stmt);
printf("%s is in district %s", $city, $district);
// Close statement
mysqli_stmt_close($stmt);
}
mysqli_close($con);
?>
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。