我只是想問,如果有人知道我可以如何發佈POST請求的多個數據。 這工作:Gu POST 6 POST請求
$data = array(
'post_params'=>[
'Name'=>'Foo',
'LastName'=>'Bar'
]
);
這dosent工作:任何替代方案?
$data = array(
'post_params'=>[
'Name'=>'Foo',
'LastName'=>'Bar'
],
'post_params'=>[
'Name'=>'Foo',
'LastName'=>'Bar'
]
);
我可以一次發送多個發佈數據嗎?
的可能的複製[如何執行在同一時間多個狂飲請求?(http://stackoverflow.com/questions/19520185/how-to-perform-multiple-guzzle-requests-at-the-the-time) – smoqadam