PHP 中的 == 和 === 运算符

发布于 2024-09-05 21:11:26 字数 209 浏览 7 评论 0原文

假设我有一个始终是字符串的变量。

现在看下面的代码:

if($myVar === "teststring")

注意: $myVar 将始终是一个字符串,所以我的问题是

哪个更快/最好,使用 === (缩进)或 < code>== (相等)?

Let's say I have a variable that will always be a string.

Now take the code below:

if($myVar === "teststring")

Note: $myVar will always be a string, so my questions is

Which is quicker/best, using === (indentity) or the == (equality)?

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

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

发布评论

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

评论(3

挽清梦 2024-09-12 21:11:27

身份测试总是更快,因为 PHP 不需要 Type Juggle 来评估比较。然而,我想说速度差异在纳秒范围内并且完全可以忽略不计。

相关阅读:

Testing for identity is always faster, because PHP does not have to Type Juggle to evaluate the comparison. However, I'd say the speed difference is in the realms of nanoseconds and totally neglectable.

Related reading:

如何视而不见 2024-09-12 21:11:27

=== 会稍微快一点,但更重要的是,它强制 $myVar will 是一个字符串,所以你不必担心关于它是其他类型可能产生的影响。

=== will be slightly faster, but more importantly, It enforces that $myVar will be a string so you don't have to worry about the possible effects of it being some other type.

合约呢 2024-09-12 21:11:27

一般来说,当我编码时,我使用 == 而不是 ===,但是,使用恒等式更精确,而且速度稍快(差异很小)。

两者之间的差异可能与您的需求无关。

In general when I code, I use == over ===, however, using the identity is more precise, and also, slightly faster (difference is minimal).

The difference between the two is likely irrelevant for whatever you need.

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