php – 为什么我不能在stdClass上调用property_exists?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 为什么我不能在stdClass上调用property_exists?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的代码
<?PHP

$madeUpObject = new \stdClass();
$madeUpObject->;madeUpPRoPErty = "abc";

echo $madeUpObject->madeUpProperty;
echo "<br />";

if (property_exists('stdClass','madeUpProperty')) {
    echo "exists";
} else {
    echo "does not exist";
}
?>

输出是:

ABC
不存在

那为什么这不起作用?

尝试:
if( property_exists($madeUpObject,'madeUpProperty')) {

指定类名(而不是我已经完成的对象)意味着在stdClass定义中,您需要定义属性.

你可以从this demo看到它打印:

abc
exists

脚本宝典总结

以上是脚本宝典为你收集整理的php – 为什么我不能在stdClass上调用property_exists?全部内容,希望文章能够帮你解决php – 为什么我不能在stdClass上调用property_exists?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。