PHP 中的简单对象问题 [新手]

发布于 2024-10-06 03:45:01 字数 404 浏览 1 评论 0原文

我知道您可以创建一个像这样的数组:

$a = array();

并向其附加新的名称值对,如下所示:

$a['test'] = 'my new value';

甚至可以省略第一行,尽管这是不好的做法!

我发现对象更容易阅读和理解,所以我所做的就是获取名称值对的数组并将其转换为一个对象:

$a = (object)$a;

因此我可以访问参数:

$a->test;

创建数组的额外开销似乎很浪费是否可以简单地创建一个对象,然后以某种方式将名称值对添加到其中,就像我对数组所做的那样?

谢谢

I know you can create an array like this:

$a = array();

and append new name value pairs to it like thus:

$a['test'] = 'my new value';

It is even possible to omit the first line, although bad practice!

I find objects easier to read and understand, so what I've done is taken the array of name value pairs and cast it into an object:

$a = (object)$a;

Thus I can access the parameters:

$a->test;

It seems wasteful for the extra overhead of creating an Array to start with, is it possible to simply create an object and then somehow just add the name value pairs to it in a similar way as I would do the array?

Thanks

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

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

发布评论

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

评论(4

好倦 2024-10-13 03:45:01

是的, stdClass 类就是为此而设计的。

$a = new stdClass;
$a->test = 'my new value';

您可以将其视为类似于以下 JavaScript 代码:

var a = {};
a.test = 'my new value';

事实上,如果您有一些以 JSON 形式接收数据的 PHP 代码,则对数据运行 json_decode() 会生成 stdClass具有包含的属性的 对象。

Yes, the stdClass class is designed for just that.

$a = new stdClass;
$a->test = 'my new value';

You can think of it as being akin to the following JavaScript code:

var a = {};
a.test = 'my new value';

In fact, if you had some PHP code that received data as JSON, running json_decode() on the data results in a stdClass object with the included properties.

一笔一画续写前缘 2024-10-13 03:45:01

您可以使用 stdClass 对象来实现:

$a = new stdClass();

You can use the stdClass object for that:

$a = new stdClass();
自找没趣 2024-10-13 03:45:01

即使没有 stdclass,它也非常简单。你可以简单地做

class obj{}
$obj = new obj;
$obj->foo = 'bar';

It is very simple even without stdclass. You can simply do

class obj{}
$obj = new obj;
$obj->foo = 'bar';
依 靠 2024-10-13 03:45:01

您可以使用 stdClass 来实现此目的。

$object = new StdClass;  
$object->foo = 'bar';

You can use stdClass for this.

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