使用来自客户端 C# 的服务器端 PHP 代码

Using server side PHP code from client side C#

我有一个服务器端 PHP 脚本,看起来像这样

class MyObject {
function GetResult($input){
//some code
return $result;
}
}

我想实例化此对象并从客户端 c# 应用程序调用 GetResult 函数并获取结果。我该怎么做?

您可以使用 Ajax 调用来点击该 PHP 页面并从该 PHP 页面获取结果。 只需像这样使用 JQuery Ajax 函数并仅在 PHP 页面中进行对象初始化。

$.ajax({
      type: "POST",
      url: "example.php",
      data: {someParameter: "some value"},
      contentType: "application/json; charset=utf-8",
      dataType: "json",
      success: function(msg) 
      {

      }
    });