我本质上想要做的是能够使用 PHP 在另一台服务器上调用函数或脚本并接收响应。让我举个例子:
在我的 Web 应用程序上,我有一个页面,我需要向服务器发送一些数据,让服务器做一些工作,然后返回一个响应。
Web应用程序:
<?php
// call server script, sending it for example a string, "testString", then wait for a response
?>
服务器脚本:
<?php
// get the string "testString", so some work on it and return it, displaying it on the web app
?>
我不是在找人来为我完成这件事,只是为了让我朝着正确的方向前进。我读过 cURL 对此很有用,但还没有找到任何适合我的例子,比如这些:
http://www.jonasjohn.de/snippets/php/curl-example.htm
那么解决我的问题的理想途径是什么?