Accessing associative arrays in PHP

2020-02-11 01:45发布

I want to access the index 'memo' in the associative array in PHP below

$variables["thelistitems"];
print_r($variables["thelistitems"]);

Output

Array
(
    [0] => Array
    (
        [productid] => prod:c6dbdd62-dc13-6421-5a94-c8cd871a59d3 
        [memo] => dummy 
        [taxable] => 0 
        [unitweight] => 0 
        [unitcost] => 450.02 
        [unitprice] => 445.02 
        [quantity] => 1
    )
) 

2条回答
老娘就宠你
2楼-- · 2020-02-11 01:56

What you essentially have is an array of associative arrays. So to access the first memo, it's

 $variables["thelistitems"][0]["memo"]

To access each memo, you'd do something like this

foreach($variables["thelistitems"] as $listitem) {
    $memo = $listitem["memo"];
}
查看更多
霸刀☆藐视天下
3楼-- · 2020-02-11 02:05

Do you want this ?

$variables["thelistitems"][0]['memo']
查看更多
登录 后发表回答