我使用get_post_meta
如下:
$job_owner = get_post_meta($post->ID, 'assignedUsers', true);
该函数返回以下内容:
(
[total] => 1
[data] => Array
(
[0] => stdClass Object
(
[id] => 440968
[firstName] => John
[lastName] => Doe
[email] => john@website.com
)
)
)
我尝试从对象获取值,但每次尝试使用echo $job_owner
时都会捕获错误。错误为-类stdClass的对象无法转换为字符串
我曾尝试使用:
$array = json_decode(json_encode($job_owner), true);
它返回数组:
Array
(
[total] => 1
[data] => Array
(
[0] => Array
(
[id] => 440968
[firstName] => Megan
[lastName] => Collins
[email] => megan@bridgeviewit.com
)
)
)
但我似乎无法得到任何使用echo $array[0]->id
等返回...
我的理想场景是将数组值用作贯穿主题的变量。
1条答案
按热度按时间ldioqlga1#
$数组[数据][0]-〉ID
你试过了吗