4

我正在查询一个 API,它发送一个 JSON 响应,然后我将其解码为一个数组。这部分工作正常,但 API 以相当不友好的格式发送信息。

我将粘贴我遇到问题的部分。本质上,我正在尝试将每个类似的键更改为它们自己的数组。

Array
(
    [name] => Name
    [address] => 123 Street Rd
    [products[0][product_id]] => 1
    [products[0][price]] => 12.00
    [products[0][name]] => Product Name
    [products[0][product_qty]] => 1
    [products[1][product_id]] => 2
    [products[1][price]] => 3.00
    [products[1][name]] => Product Name
    [products[1][product_qty]] => 1
    [systemNotes[0]] => Note 1
    [systemNotes[1]] => Note 2
)

现在我想做的是让它像这样:

Array
(
    [name] => Name
    [address] => 123 Street Rd
    [product] => Array
    (
        [0] => Array
        (
            [product_id] => 1
            [price] => 12.00
            [name] => Product Name
            [product_qty] => 1
        )
        [1] => Array
        (
            [product_id] => 2
            [price] => 3.00
            [name] => Product Name
            [product_qty] => 1
        )
    [systemNotes] => Array
    (
        [0] => Note 1
        [1] => Note 2
    )
)

有什么实用的方法可以做到这一点吗?

谢谢!

4

2 回答 2

6

参考资料是你的朋友:

$result = array();

foreach ($inputArray as $key => $val) {
    $keyParts = preg_split('/[\[\]]+/', $key, -1, PREG_SPLIT_NO_EMPTY);

    $ref = &$result;

    while ($keyParts) {
        $part = array_shift($keyParts);

        if (!isset($ref[$part])) {
            $ref[$part] = array();
        }

        $ref = &$ref[$part];
    }

    $ref = $val;
}

演示


但是,还有另一种简单的方法,尽管它在功能复杂性方面效率较低:

parse_str(http_build_query($inputArray), $result);

演示

于 2013-07-19T00:26:58.940 回答
0

使用$array您的源数组:

$new_array = array("name" => $array["name"], "address" => $array["address"]);
foreach($array["products"] AS $product)
{
    $new_array["product"][] = array(
        "product_id" => $product["produit_id"],
        "price" => $product["price"],
        "name" => $product["name"],
        "product_qty" => $product["product_qty"]);
}

foreach($array["systemNotes"] AS $note)
{
   $new_array["systemNotes"][] = $note;
}

它只是浏览和创建一个新结构。^^

编辑:可以递归地完成一些通用的事情。只要浏览的元素调用相同的函数is_array,并根据键和值构建一个新数组。看起来像一个文件系统^^

于 2013-07-19T00:15:53.877 回答