从PHP数组访问特定的元字段

时间:2018-02-09 19:00:09

标签: php arrays wordpress meta

我使用以下内容为当前登录用户输出元值。

Array ( [0] => Array ( [subscription_id] => IaQX8AtBRo [product_id] => cbdemo_grow [product_name] => Plan - Grow [product_decs] => This a 3-month plan with a 14 day trial period. [status] => in_trial [product_price] => 89 USD / 3 month [trail_start] => 08/02/2018 [trial_end] => 22/02/2018 ) )

输出

product_id

这很好用,但我只需要访问数组<?php $all_meta_for_user['product_id'][0]; 中的特定元字段。

我试图通过以下内容输出,但无法使其正常工作:

actionBar

2 个答案:

答案 0 :(得分:2)

你有错误的方法。

$all_meta_for_user[0]['product_id'];

答案 1 :(得分:-1)

您正在以错误的方式访问阵列。请尝试以下方法:

$all_meta_for_user[0]['product_id'];