强制在PHP中将数组添加到JSON的单个元素中

时间:2019-06-08 06:53:28

标签: php arrays json xml

我正在自定义WordPress插件以导出JSON文件供第三方使用。

我需要在“ order_item”中添加一个仅包含一项的数组。对于多个订单商品,将自动添加数组(方括号)。

我尝试了其他方法来将数组包含在$ child-> addChild('order_item')中,例如(array)$ child-> addChild('order_item'),但这应该是错误的方法。

生成json输出的函数如下:

function woo_ce_export_dataset_override_order( $output = null ) {

    global $export;

    if( !empty( $export->fields ) ) {
        $child = $output->addChild( 'transaction_date', date("Ymd", time()) );
        foreach( $orders as $order ) {

            $child = $output->addChild( apply_filters( 'woo_ce_export_xml_order_node', 'neworders' ) );

            $args = $export->args;
            $order = woo_ce_get_order_data( $order, 'order', $args, array_keys( $export->fields ) );

            foreach( array_keys( $export->fields ) as $key => $field ) {
                if( isset( $order->$field ) && isset( $export->columns[$key] ) ) {
                    if( !is_array( $field ) ) {
                        $child->addChild( apply_filters( 'woo_ce_export_xml_order_label', sanitize_key( $export->columns[$key] ), $export->columns[$key] ), esc_html( woo_ce_sanitize_xml_string( $order->$field ) ) );
                    }
                }
            }

            if( !empty( $order->order_items ) ) {
                foreach( $order->order_items as $order_item ) {
                    $order_item_child = $child->addChild( 'order_item' );

                    foreach( array_keys( $export->fields ) as $key => $field ) {
                        if( isset( $order_item->$field ) && isset( $export->columns[$key] ) ) {
                            if( !is_array( $field ) ) {
                                $order_item_child->addChild( apply_filters( 'woo_ce_export_xml_order_label', sanitize_key( $export->columns[$key] ), $export->columns[$key] ), esc_html( woo_ce_sanitize_xml_string( $order_item->$field ) ) );
                            }
                        }
                    }
                }
            }
        }
        // Allow Plugin/Theme authors to add support for sorting Orders
        $output = apply_filters( 'woo_ce_orders_output', $output, $orders );
    }
    return $output;
}   

这是我从输出中得到的:

{
    "transaction_date": "20190607",
    "neworders": [
        {
            "postid": "12081",
            "order_item": [
                {
                    "ugs": "SAM1222",
                    "qty": "3"
                },
                {
                    "ugs": "NOK8777",
                    "qty": "3"
                }
            ]
        },
        {
            "postid": "12082",
            "order_item": {
                "ugs": "SON7411",
                "qty": "1"
            }
        }
    ]
}

我希望在post_item中将数组包括在postid中:12082

{
    "transaction_date": "20190607",
    "neworders": [
        {
            "postid": "12081",
            "order_item": [
                {
                    "ugs": "SAM1222",
                    "qty": "3"
                },
                {
                    "ugs": "NOK8777",
                    "qty": "3"
                }
            ]
        },
        {
            "postid": "12082",
            "order_item": [
                {
                    "ugs": "SON7411",
                    "qty": "1"
                }
            ]
        }
    ]
}

1 个答案:

答案 0 :(得分:0)

看起来您正在生成XML(使用SimpleXML)而不是JSON。我想象您使用json_encode()将SimpleXML对象的debug / vardump输出编译为JSON。

此时,SimpleXML无法知道单个元素可能具有同级。

我建议您直接为JSON生成结构。使用PHP很简单。这是一个简化的示例(没有数据获取和过滤):

// simplified demo data
$orders = [
  '12081' => [
      'SAM1222' => 3,
      'NOK8777' => 3
  ], 
  '12082' => [
      'SON7411' => 1
  ]   
];

// associative arrays get encoded as objects in JSON
$result = [
  "transaction_date" => date('Ymd'),
  "neworders" => []    
];
foreach($orders as $orderId => $order) {
   $post = [
      'postid' => $orderId,
      'order_item' => []
   ];
   foreach ($order as $itemId => $quantity) {
       // numerical arrays will be encoded as arrays in JSON
       $post['order_item'][] = [
           "ugs" => $itemId,
           "qty" => $quantity
       ];
   }
   $result['neworders'][] = $post;
}
echo json_encode($result, JSON_PRETTY_PRINT);

输出:

{ 
  "transaction_date": "20190608", 
  "neworders": [ 
    { 
      "postid": 12081, 
      "order_item": [ 
        { 
          "ugs": "SAM1222", 
          "qty": 3 
        }, 
        {
          "ugs": "NOK8777",
          "qty": 3 
        } 
      ] 
    }, 
    { 
      "postid": 12082, 
      "order_item": [ 
        { 
          "ugs": "SON7411",
          "qty": 1 
        } 
      ] 
    } 
  ] 
}