PHP 中 NULL 和 null 的区别

发布于 2024-07-04 04:08:22 字数 167 浏览 6 评论 0原文

PHP 中的 NULLnull 之间有区别吗? 有时它们似乎可以互换,有时则不然。

编辑:出于某种原因,当我阅读答案中链接的文档时(在发布此问题之前),我将其读为“区分大小写”而不是“不区分大小写”,这就是我首先发布此问题的全部原因。 。

Is there a difference between NULL and null in PHP? Sometimes they seem to be interchangeable and sometimes not.

edit: for some reason when I read the documentation linked to in the answer (before posting this question) I read it as "case sensitive" instead of "case insensitive" which was the whole reason I posted this question in the first place...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

呆萌少年 2024-07-11 04:08:22

Null 不区分大小写。

来自文档

只有一个 null 类型的值,那就是不区分大小写关键字 NULL。

Null is case insensitive.

From the documentation:

There is only one value of type null, and that is the case-insensitive keyword NULL.

穿越时光隧道 2024-07-11 04:08:22

没有区别。 相同的类型只是它的不区分大小写关键字。 与 True/False 等相同...

There is no difference. Same type just its a case insensitive keyword. Same as True/False etc...

┈┾☆殇 2024-07-11 04:08:22

两者都可以。 但官方 PHP 风格指南 PSR-12 建议使用小写。

https://www.php-fig.org/psr/psr-12/,第 2.5 节

Either will work. But the official PHP style guide, PSR-12, recommends lowercase.

https://www.php-fig.org/psr/psr-12/, Section 2.5

迷迭香的记忆 2024-07-11 04:08:22

NULL = null,表示null = NULL,两者互相引用,并且只有一种数据类型null

PHP 手册:

只有一个 null 类型的值,即不区分大小写
常量null

仅当底层数据库有特定要求时才应考虑。

但如果我们以 MySQL DBMS 为例,列中的空值表示为大写 NULL,但这两种情况都可以。 为了让您满意,您可以使用 NULL 例如。

NULL = null, which means null = NULL, both refer to each other and have only one data type null.

PHP Manual:

There is only one value of type null, and that is the case-insensitive
constant null.

The consideration should be only taken when the underlying Database has specific requirements.

But if we take the example of MySQL DBMS, the null value in the column is represented as uppercase NULL, but both cases will work. For your satisfaction, you can use NULL for example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文