gpt4 book ai didi

php - 为什么 PHP 不能有常量对象?

转载 作者:行者123 更新时间:2023-12-02 22:33:37 24 4
gpt4 key购买 nike

我有一个键值数据库表,我在其中存储一些设置。

我希望将这些设置放在 PHP 常量对象中,因为它们不应该是可编辑的。

在 PHP7 中我们现在可以这样做:

define('MySettings', array(
'title' => 'My title'
// etc
));

// And call it with
echo MySettings['title'];

效果很好。

但为什么我不能这样做:

define('MySettings', (object) array('title' => 'My title'));

所以我可以这样调用它:

echo MySettings->title;
// or
echo MySettings::title;

这只是因为我认为将其输入为对象属性/常量($obj->key$obj::key)更快、更漂亮,比作为数组 ($array['key'])

有什么原因这是不可能的吗?

最佳答案

对于 PHP,所有对象都是可变的。由于常量永远不应该在运行时更改,但对象可以,因此当前不支持对象常量。

phpdoc about constants ,指出:

When using the const keyword, only scalar data (boolean, integer, float and string) can be contained in constants prior to PHP 5.6. From PHP 5.6 onwards, it is possible to define a constant as a scalar expression, and it is also possible to define an array constant. It is possible to define constants as a resource, but it should be avoided, as it can cause unexpected results.

尽管数组存在不一致,并且没有给出为什么允许数组常量的理由。 (我什至认为这是一个错误的调用。)必须注意的是,数组常量是不可变的,因此尝试更改它们会导致 fatal error ,如 php7 中的代码所示:

<?php
$aNormalMutableArray = ['key' => 'original'];
$aNormalMutableArray['key'] = 'changed';
echo $aNormalMutableArray['key'];

define(
'IMMUTABLE_ARRAY',
[
'key' => 'original',
]
);
IMMUTABLE_ARRAY['key'] = 'if I am an array, I change; if I am a constant I throw an error';
echo IMMUTABLE_ARRAY['key'];

throw :

PHP Fatal error:  Cannot use temporary expression in write context
in ~/wtf.php on line 12

为什么无法定义具有类似错误的对象常量?人们必须询问当权者。

我建议远离数组和对象作为常量。而是创建一个不可变的对象或使用 immutable collections相反。

由于您正在寻找某种语法,因此已经有了 class constants 的概念。 。

<?php
class MyClass
{
const CONSTANT = 'constant value';

function showConstant() {
echo self::CONSTANT . "\n";
}
}

echo MyClass::CONSTANT . "\n";

$classname = "MyClass";
echo $classname::CONSTANT . "\n"; // As of PHP 5.3.0

$class = new MyClass();
$class->showConstant();

echo $class::CONSTANT."\n"; // As of PHP 5.3.0

也可以在接口(interface)中定义它们。

关于php - 为什么 PHP 不能有常量对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39641336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com