如何制作 PDO 类方法,用于在 arg 中使用未知数量的参数插入/更新/删除

How to make a PDO class method for inserting/updating/deleting with an unknown number of parameters in the arg(如何制作 PDO 类方法,用于在 arg 中使用未知数量的参数插入/更新/删除)
本文介绍了如何制作 PDO 类方法,用于在 arg 中使用未知数量的参数插入/更新/删除的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

目前我正在尝试创建一个 PDO 类,我将在其中使用一种方法来运行诸如 INSERT、UPDATE 或 DELETE 之类的查询.

Currently Im trying to create a PDO class where I will have a method to run a query like INSERT, UPDATE, or DELETE.

例如,这是我的 SELECT 方法

For examaple this is my method for a SELECT

 public function getPreparedQuery($sql){
    $stmt = $this->dbc->prepare($sql);
    $stmt->execute([5]);
    $arr = $stmt->fetchAll(PDO::FETCH_ASSOC);
    if(!$arr) exit('No rows');
    $stmt = null;
    return $arr;
}

我只是这样称呼它:

    $stmt = $database->getPreparedQuery($sql2);
var_export($stmt);

到目前为止,我知道 runQuery 应该像这样工作:

And so far I know that a runQuery should work something similar to this:

不使用方法插入示例:

$idRol = "6";
$nomRol = "test6";                          
$stmt = $database->dbc->prepare("insert into roles (idRol, NomRol) values (?, ?)");
$stmt->execute(array($idRol,$nomRol));
$stmt = null;

但我想把它变成一个通用的方法,我可以简单地传递sql语句,就像这样:

But I want to make it into an universal method where i simply can pass the sql sentence, something like this:

$database->runQuery($query);

但查询可能恰好是

$query = "插入角色 (idRol, NomRol) VALUES ('4','test')";

$query = "INSERT INTO roles (idRol, NomRol) VALUES ('4','test')";

$query = "插入电影 (movName, movLength, movArg) VALUES ('name1','15','movie about...')";

$query = "INSERT INTO movies (movName, movLength, movArg) VALUES ('name1','15','movie about...')";

那么我如何对 arg $query 进行切片,以便我可以获取所有正在使用的变量以创建一个通用的 runQuery?

So how do I slice the arg $query so I can get all the variables that are being used in order to make an universal runQuery?

因为我可以想象我的方法应该是这样的

Because I can imagine that my method should be something like this

runQuery([$var1 , $var2, $var3....(there can be more)] , [$var1value, $var2value, $var3value...(there can be more)]){

        $stmt = $database->dbc->prepare("insert into movies($var1 , $var2, $var3....(there can be more)) values (?, ? , ? (those are the values and there ca be more than 3)"); //how do i get those "?" value and amount of them, and the name of the table fields [movName, movLength, movArg can be variable depending of the sentence]?
        $stmt->execute(array($var1,$var2, $var3, ...)); //this is wrong , i dont know how to execute it
        $stmt = null;
}

推荐答案

您需要向函数中添加第二个参数.只是一个数组,所有这些变量都会在其中.根据定义,数组可以包含任意数量的元素,这正好可以解决您的问题:

You need to add a second parameter to your function. Simply an array where all those variables would go. An array by definition can have an arbitrary number of elements, which solves your problem exactly:

public function runQuery($sql, $parameters = []) {
    $stmt = $this->dbc->prepare($sql);
    $stmt->execute($parameters);
    return $stmt;
}

这个简单的函数将运行任何查询.您可以在我专门介绍 PDO 辅助函数的文章中查看使用示例:

this simple function will run ANY query. You can see the usage example in my article dedicated to PDO helper functions:

// getting the number of rows in the table
$count = $db->runQuery("SELECT count(*) FROM users")->fetchColumn();

// the user data based on email
$user = $db->runQuery("SELECT * FROM users WHERE email=?", [$email])->fetch();

// getting many rows from the table
$data = $db->runQuery("SELECT * FROM users WHERE salary > ?", [$salary])->fetchAll();

// getting the number of affected rows from DELETE/UPDATE/INSERT
$deleted = $db->runQuery("DELETE FROM users WHERE id=?", [$id])->rowCount();

// insert
$db->runQuery("INSERT INTO users VALUES (null, ?,?,?)", [$name, $email, $password]);

// named placeholders are also welcome though I find them a bit too verbose
$db->runQuery("UPDATE users SET name=:name WHERE id=:id", ['id'=>$id, 'name'=>$name]);

// using a sophisticated fetch mode, indexing the returned array by id
$indexed = $db->runQuery("SELECT id, name FROM users")->fetchAll(PDO::FETCH_KEY_PAIR);

如您所见,现在您的函数可以用于具有任意数量参数的任何查询

As you can see, now your function can be used with any query with any number of parameters

这篇关于如何制作 PDO 类方法,用于在 arg 中使用未知数量的参数插入/更新/删除的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)