变量还是常量?

发布于 2024-09-10 02:18:07 字数 191 浏览 2 评论 0原文

使用其中一种比另一种有好处吗?

$lang = isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en';
# OR
define("LANG" , isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en');

谢谢

Is there a benefit of using one over the other ?

$lang = isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en';
# OR
define("LANG" , isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en');

Thanks

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

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

发布评论

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

评论(3

淡紫姑娘! 2024-09-17 02:18:07

在这种情况下,常数更合适。由于您希望在整个应用程序中使用相同的值,并且您不希望它可能被错误地更改。

请注意,编程语言有许多不需要用于实现算法的功能,但它们的作用是使算法更具可读性、可维护性并且不易出现错误。常量就是这类特征之一。

In this case a constant is more appropriate. As you want to use the same value through your entire application, and you don't want it possibly changed by mistake.

Do notice programing languages have many features you don't need to use to implement an algorithem, but rather they are there to make the algorithem more readable, maintainable and less prone to get bugs. Constants are one of those type of features.

梦萦几度 2024-09-17 02:18:07

常量:

  1. 之后不能更改。
  2. 始终在范围内(在类/函数/方法中)。
  3. 只能是标量(或文件资源,但这只是一个未记录的功能/错误)

变量:

  1. 可以更改。
  2. 可能超出范围。
  3. 可以是任何数据。

Constants:

  1. Cannot be changed afterwards.
  2. Are always in scope (in classes / functions / methods).
  3. Can only be scalars (or file-resources, but that's just an undocumented feature/bug)

Variables:

  1. Are changeable.
  2. May be out of scope.
  3. Can be any data.
梦亿 2024-09-17 02:18:07

这取决于你想做什么。常量的值一旦定义就不能更改。变量可以。这种差异应该让您选择您需要的。

It depends on what you want to do. The value of the constant can't be change once it's defined. The variable can. This difference should make you choose the one you need.

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