如何在.net核心应用程序中运行PHP应用程序

时间:2018-11-14 06:16:32

标签: php .net iis integration

我正在尝试集成.net和php应用程序。我想在核心.net应用程序中运行php应用程序,但不能与IIS 10一起使用。

PHP 5.6安装在c:\驱动器中,而我的源代码库位于d:\驱动器中。

我可以将.net作为父应用程序运行,将php作为子应用程序运行。

从.net应用程序的onclick按钮调用以下方法,该方法将打开php应用程序,并从该方法将一些数据发送回.net窗口。

 function invoke_reporting() {
        var newwindow = window.open("http://192.168.17.109/TestCopy_Report1/templates/ct-head");
     }

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

您应该curl(或通过任何客户端)来自php端点的数据。而不是显示PHP页面,然后将数据传递回.net