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.
我陷入了一个非常复杂的情况(可能只是我缺乏经验)。
简单的 include()不适用于外部服务器,所以我使用curl但我很困惑
这个怎么做?
您需要将会话和查询字符串从服务器 A 发送到服务器 B(最好通过 https 连接)。只需将会话和查询字符串形成为参数,进行 urlencode 并通过 GET 或 POST 将它们发送到服务器 B。服务器 B 可以响应一些数据 - 将这些数据放入数组并进行序列化或 json_encode。当您在服务器 A 上收到它时,请执行反序列化或 json_decode,您将从服务器 B 获取数据。