mysqli プリペアド ステートメントの使用
mysqli でプリペアド ステートメントを使用する場合、クエリを実行する前にパラメータを正しくバインドすることが重要です。
エラーデバッグ
パラメーターのバインドが実行されていないため、提供されたコードで「非オブジェクトのメンバー関数execute() を呼び出します」というエラーが発生します。 mysqli_prepare ドキュメントによると、パラメータ マーカーは、実行前に mysqli_stmt_bind_param を使用してバインドする必要があります。
エラー処理を含む完全な例:
以下は、以下を含むより完全な例です。パラメータのバインディング、エラー処理、準備されたデータを使用したデータの挿入とフェッチのデモを行います。ステートメント:
<?php // Establish database connection $mysqli = new mysqli("localhost", "root", "root", "test"); if ($mysqli->connect_errno) { echo "Failed to connect to MySQL: " . $mysqli->connect_error; exit; } // Prepare insert statement $stmt = $mysqli->prepare("INSERT INTO users (name, age) VALUES (?,?)"); if (!$stmt) { echo "Error preparing statement: " . $mysqli->error; exit; } // Bind parameters and insert one row $name = 'One'; $age = 1; $stmt->bind_param('si', $name, $age); $stmt->execute(); if ($stmt->errno) { echo "Error executing insert: " . $stmt->error; exit; } // Insert another row with different values $name = 'Two'; $age = 2; $stmt->bind_param('si', $name, $age); $stmt->execute(); if ($stmt->errno) { echo "Error executing insert: " . $stmt->error; exit; } // Prepare select statement $stmt = $mysqli->prepare("SELECT name, age FROM users"); if (!$stmt) { echo "Error preparing statement: " . $mysqli->error; exit; } // Execute select statement and fetch results $stmt->execute(); $result = $stmt->get_result(); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { echo "{$row['name']} is {$row['age']} years old<br>"; } } // Close statement and connection $stmt->close(); $mysqli->close(); ?>
このコードはステートメントの準備、実行、結果の取得中にエラーを処理し、準備されたステートメントの使用法をより堅牢に示します。
以上がmysqli プリペアド ステートメントが「非オブジェクトのメンバー関数execute() の呼び出し」を返すのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。