doutuohan6606 2012-04-13 20:44
浏览 53
已采纳

如何让PHP CURL根据PHP自己的规范格式化参数数组?

PHP requires query keys with multiple values to have [] at the end. For example:

<input name="key[]" />
<input name="key[]" />

The reason this is frustrating is, when I use CURL in PHP, the PHP implementation of CURL won't convert the array back appropriately. Instead, it just passes key=Array.

I don't want to build the query string from scratch, because I might be transferring files at the same time (which requires CURLOPT_POSTFIELDS to be an array)

curl_setopt($CURL, CURLOPT_POSTFIELDS, $arguments);

Any ideas how to get this to work? I want CURL to format the query string the way PHP would expect to see it if there were multiple values for one key.

  • 写回答

1条回答 默认 最新

  • duanpiyao2734 2012-04-13 20:53
    关注

    Try this:

    $arguments = array (
      'key[0]' => 'value1',
      'key[1]' => 'value2',
    );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 传人记程序做的plc 485从机程序该如何写
  • ¥15 已知手指抓握过程中掌指关节、手指各关节和指尖每一帧的坐标,用贝塞尔曲线可以拟合手指抓握的运动轨迹吗?
  • ¥50 libwebsockets 如何添加其他socket事件回调
  • ¥50 实现画布拖拽算子排布,通过flink实现算子编排计算,请提供思路
  • ¥15 esium自定义材质拉伸问题
  • ¥15 cmake+mingw使用<mysqlx/xdevapi.h>报错
  • ¥15 eNSP中防火墙的使用
  • ¥15 关于#mlnet#的问题:mlnet相关请求(语言-c#)
  • ¥15 lvgl7.11怎么做出文字被选中的效果
  • ¥50 如何快速查看手机目标app的主要服务器ip
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部