为什么序列化对象不能存储在 const 常量中?

发布于 2024-11-30 14:42:57 字数 492 浏览 2 评论 0原文

<?php
    const FOOBAR = "Foo"; // Works.
    const FOOBAR = array("Foo", "Bar"); // Doesn't work.  Makes sense.
    const FOOBAR = serialize(array("Foo", "Bar")); // Doesn't work.  Okay.  :\

    define("FOOBAR", serialize(array("Foo", "Bar"))); // Works!  The heck?
 ?>

PHP 解析错误:语法错误、意外的 '('、期望 ',' 或 ';'

为什么使用 define() 声明常量时可以将常量设置为序列化对象,但不使用 const 关键字?

(使用 5.3.5-1ubuntu7.2 进行测试。)

<?php
    const FOOBAR = "Foo"; // Works.
    const FOOBAR = array("Foo", "Bar"); // Doesn't work.  Makes sense.
    const FOOBAR = serialize(array("Foo", "Bar")); // Doesn't work.  Okay.  :\

    define("FOOBAR", serialize(array("Foo", "Bar"))); // Works!  The heck?
 ?>

PHP Parse error: syntax error, unexpected '(', expecting ',' or ';'

Why can constants be set to serialized objects when they're declared with define(), but not with the const keyword? What am I missing here?

(Tested with 5.3.5-1ubuntu7.2.)

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

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

发布评论

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

评论(2

抹茶夏天i‖ 2024-12-07 14:42:57

const 只能采用标量或非表达式值。

Define 将采用表达式值,这就是 Define 在您的情况下起作用的原因。

const can only take scalar or non expressions values.

define will take expressions values and that is why define works in your case.

稀香 2024-12-07 14:42:57

const 是编译时操作。定义是一个运行时操作。更多的 php 机制,包括数组分配和空间分配,在运行时可用。

相关的SO问题

Google php const Define

了解更多信息

const is a compile-time action. define is a run-time action. More php machinery including array allocation and space allocation is available at runtime.

A related SO question

Google php const define

for more

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