PHP 中 Python 的 None 单例的等价物是什么?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Php 也有 NULL
摘自文档
Php has NULL too
Taken from the docs
Python 中的
None
与 PHP 中的对应 - 它是NULL
(但在 PHP 中null
并不重要,因此null === Null === NULL
)。None
in Python has its counterpart in PHP - it isNULL
(but in PHP cases innull
do not matter, sonull === Null === NULL
).它的
NULL
。它不是单例。http://php.net/manual/en/language.types.null.php
Its
NULL
. Its not a singleton.http://php.net/manual/en/language.types.null.php
它被称为
NULL
。It is called
NULL
.