PHP 中 Python 的 None 单例的等价物是什么?

发布于 2025-01-04 00:31:46 字数 224 浏览 0 评论 0原文

在 PHP 中如何表示“未定义”的概念?

SQL 有“NULL”,Python 有“None”,PHP 中的等价物是什么?

[更新]

为大家提供启发性的讨论(cHao,有吗? 写的是回复而不是评论,我会选择你的)。

How do you represent the concept of "undefined" in PHP?

SQL has "NULL", Python has "None", what is the equivalent in PHP?

[updated]

Tanks everybody for the enlightening discussion (cHao, had you
written a response rather than a comment I would choose yours).

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

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

发布评论

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

评论(4

〆一缕阳光ご 2025-01-11 00:31:46

Php 也有 NULL

摘自文档

特殊的NULL值表示没有值的变量。空是
NULL 类型的唯一可能值。

如果满足以下条件,变量将被视为 null:

  • 它已被分配常量 NULL。

  • 尚未设置任何值。

  • 它已被取消设置()。

Php has NULL too

Taken from the docs

The special NULL value represents a variable with no value. NULL is
the only possible value of type NULL.

A variable is considered to be null if:

  • it has been assigned the constant NULL.

  • it has not been set to any value yet.

  • it has been unset().

脸赞 2025-01-11 00:31:46

Python 中的 None 与 PHP 中的对应 - 它是 NULL (但在 PHP 中 null 并不重要,因此 null === Null === NULL)。

None in Python has its counterpart in PHP - it is NULL (but in PHP cases in null do not matter, so null === Null === NULL).

我不吻晚风 2025-01-11 00:31:46

它被称为 NULL

It is called NULL.

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