PHP stdClass 对象信息
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.