PDO 准备好的语句 - 参数名称中的冒号是做什么用的?

PDO prepared statement - what are colons in parameter names used for?(PDO 准备好的语句 - 参数名称中的冒号是做什么用的?)
本文介绍了PDO 准备好的语句 - 参数名称中的冒号是做什么用的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我看过很多文章在使用 PDO 时在命名参数前使用冒号 (:),还有一些文章不使用冒号.我会尽快不使用冒号,只是因为它少了一个按键并且更容易阅读.

I've seen many articles using colons (:) in front of named parameters when using PDO, and a couple that do not use the colon. I'd just as soon not use the colon, simply because it's one less keystroke and slightly easier to read.

它似乎对我来说工作正常,但我很好奇在使用冒号时是否遗漏了一些重要的东西?

It seems to be working fine for me, but I'm curious if there is something important that I'm missing when it comes to the use of colons?

例如,这很好用:

function insertRecord ($conn, $column1, $comumn2) {
    try {
        $insertRecord = $conn->prepare('INSERT INTO Table1 (column1, column2)
        VALUES(:column1, :column2)');
        $insertRecord->execute(array(
                'column1' => $column1,
                'column2' => $column2
            ));
    }
    catch(PDOException $e) {
        echo $e->getMessage();
    }
}

与大多数开发人员使用它相反,它也有效:

As opposed to most developers using this, which also works:

function insertRecord ($conn, $column1, $comumn2) {
    try {
        $insertRecord = $conn->prepare('INSERT INTO Table1 (column1, column2)
        VALUES(:column1, :column2)');
        $insertRecord->execute(array(
                ':column1' => $column1,
                ':column2' => $column2
            ));
    }
    catch(PDOException $e) {
        echo $e->getMessage();
    }
}

注意 execute 语句参数中的冒号.

Notice the colons in the execute statement parameters.

我想了解冒号的用途.

推荐答案

SQL 语句中需要冒号,以指示哪些标识符是占位符.

Colons are required in the SQL statement, to indicate which identifiers are placeholders.

execute()bindParam() 调用中的冒号是可选的.文档指定了它们,但实现足够聪明,可以弄清楚如果你不考虑它们是什么意思(你还能指什么?).

Colons in the execute() or bindParam() calls are optional. The documentation specifies them, but the implementation is clever enough to figure out what you mean if you leave them out (what else could you mean?).

这篇关于PDO 准备好的语句 - 参数名称中的冒号是做什么用的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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 的问题)