私はこれを見つけましたhttp://net.tutsplus.com/tutorials/php/the-problem-with-phps-prepared-statements/
そして、他のファイルが引数としてクエリを使用して呼び出す別のphpファイルにそれを含めることは本当に良いことです。
挿入や更新などの他のクエリと同様のものを作成することは可能ですか?
私はこれを見つけましたhttp://net.tutsplus.com/tutorials/php/the-problem-with-phps-prepared-statements/
そして、他のファイルが引数としてクエリを使用して呼び出す別のphpファイルにそれを含めることは本当に良いことです。
挿入や更新などの他のクエリと同様のものを作成することは可能ですか?
これは更新された例です:
$paramsは配列です。
function insertToDB($params, $db) { //Pass array and db
$fields = array();
$conn = new mysqli('localhost', 'root', 'root', 'db') or die('XXX');
$stmt = $conn->stmt_init();
$stmt->prepare("SELECT * FROM ".$db);
$stmt->execute();
$meta = $stmt->result_metadata();
while ($field = $meta->fetch_field()) {
$fields[] = $field->name;
}
$fields = implode(", ", $fields);
$placeholders = implode(',', array_fill(0, count($params), '?'));
$types = '';
foreach($params as $value) {
$types.= substr(strtolower(gettype($value)), 0, 1);
}
$ins = "INSERT INTO MYDB (".$fields.") VALUES (".$placeholders.")";
$bind_names[] = $types;
for ($i = 0; $i < count($params); $i++) {
$bind_name = 'bind' . $i;
$$bind_name = $params[$i];
$bind_names[] = &$$bind_name;
}
if ($stmt->prepare($ins)) {
call_user_func_array(array($stmt,'bind_param'),$bind_names);
$insresult = $stmt->execute();
}
return $insresult;
$stmt->close();
}