gpt4 book ai didi

php - 如何回显对象或哈希类型字段php

转载 作者:可可西里 更新时间:2023-11-01 10:04:31 25 4
gpt4 key购买 nike

请问如何回显或获取对象类型字段的值?
我首先编码,替换字符串并解码代码如下:

$mongorow = json_encode($mongorow);

$mongorow= preg_replace("/_DOT_/", ".", $mongorow);

$mongorow = json_decode($mongorow);

然后在我的表单中,我尝试使用如下字段:

value="<?php echo $mongorow->name;?>" //this works producing value of name
value="<?php echo $mongorow->properties;?>" //this produces an error where properties is of type object

我得到的错误信息是 (symfony)

Catchable Fatal Error: Object of class stdClass could not be converted to string in ...

最佳答案

首先尝试调试$mongorow->properties 的类型您可以使用var_dumb 函数调试该对象。

试试这个:

var_dump($mongorow);

您将获得准确的数据。

For more read here about the var_dump .

关于php - 如何回显对象或哈希类型字段php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21623828/

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