PHP如何做一个键值对列表?

时间:2013-08-02 11:24:35

标签: php wordpress

我想创建一个这样的数据结构:

pos, desc, price
0  , myKey, myValue
1  , myKey2, myvalue 

所以我可以使用foreach查看数组,并获取键和值。

应该很容易,但我在玩耍,这是我尝试过的:

$variationsList = array();

for($x=1;$x<6;$x++)
    {
        if (get_post_meta($post_id, "variationDesc" . $x, true) != '')
        {
            $variationsList["desc"] = get_post_meta($post_id, "variationDesc" . $x, true);
            $variationList["price"] = get_post_meta($post_id, "variationPrice" . $x, true);
        }
    }

1 个答案:

答案 0 :(得分:2)

将包含这两个键的新数组追加到

$variationsList[] = array('desc' => ..., 'price' => ...);