PHP stdClass 对象信息

发布于 2024-08-21 05:25:40 字数 130 浏览 5 评论 0原文

PHP 中有一个 stdClass 东西:

<?php
$fakeobj->hi = "o";
echo $fakeobj->hi;

看到了吗?这是php4吗?

there's this stdClass thing in PHP:

<?php
$fakeobj->hi = "o";
echo $fakeobj->hi;

See? Is this php4?

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

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

发布评论

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

评论(1

像你 2024-08-28 05:25:40

StdClass 存在于 php 4 和 5 中。它也不一定 - 它只是一个没有方法的基本类实现 - 一个值对象。当某些函数需要生成没有显式用户定义类的对象(例如 json_decode)或未显式映射类时由 SOAP 请求返回的值对象时,它们会使用它。当然,用户/开发人员也可以使用它。

StdClass is present in php 4 and 5. Its not necessarily either - its just a basic class implementation with no methods - a value object. Its used by some functions when they need to generate an object without an explicit user defined class for example json_decode or a value object returned by a SOAP request when a class isnt explicitly mapped. Of course a user/developer can also use it.

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