Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设您提交了表单并且在请求正文中有:
data[first]=johnny&data[last]=appleseed
正常的 POST 请求在网络上运行良好,但是当从 Fiddler 提交时,PHP 抱怨“数据”不是数组。
我不确定如何格式化请求正文,以便将“数据”识别为数组。
是的,我正在使用Content-Type: application/x-www-form-urlencoded.
Content-Type: application/x-www-form-urlencoded
谢谢
发现了问题,没有正确编码请求正文(即没有将 %5B 用于 '[' 和 %5D 用于 ']')