Sorun cURL PHP kullanarak bir çok boyutlu dizi ilanı

0 Cevap php

I'm having problems posting an array using PHP cURL. I have successfully posted other values to the same page using POST-variables. But this one is hard to figure out. The only problem is how I should present the data to the server.

Ben form analizörü kullanılarak özgün biçimini kontrol etti. Ve Form analizörü POST değişkenleri böyle gönderilir olduğunu göstermektedir:

array fundDistribution' => 
     array
        204891 => '20' (length=2)
        354290 => '20' (length=2)
        776401 => '20' (length=2)
        834788 => '40' (length=2)

Bu değerler sadece bir örneğini gösteren içindir. Ama onlar aynı uzunlukta olacak.

Benim sorunum bu gibi onları gönderdiğinizde yanıt veren sunucu değerleri tanımıyor ki:

Array(
[104786] => 20
[354290] => 20
[865063] => 20
[204891] => 20
[834788] => 20)

Benim soru: Nasıl veri böylece sunucu anlar gönderebilirim?

Teşekkür ederiz!

0 Cevap