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.
我想知道如何将 C# 数组发送到 php web 服务。这里 c# 应用程序在客户端,php 网页在服务器中,这个 php web 服务获取该数组并存储在数据库中
您不能直接将数组发送到 php 服务,但您可以做的是创建一个由 ','(coma) 分隔的字符串,然后将其发送到 url 或作为响应,
在服务器端,您可以将其拆分并在这里获得您的答案。
另一种方法是正如 Elliot 所说,但您需要一些 JSON 知识。
你必须: