在 Node.js Web 服务器中执行 PHP 脚本
问题: Node.js Web 服务器可以执行 PHP 脚本像 Apache 一样,将 PHP 集成到 Node.js 中?
答案:
虽然不建议在 Node.js 中直接执行 PHP 脚本,但有一些方法可以集成它们
选项 1:Shell 调用
为了避免直接在 Node.js 中执行 PHP 脚本,您可以通过 shell 接口调用 PHP 解释器:
var exec = require("child_process").exec; app.get('/', function(req, res) { exec("php index.php", function (error, stdout, stderr) { res.send(stdout); }); });
选项 2:Web 服务器中继
如果您不想直接在 Node.js 中执行 PHP 脚本,您可以将它们中继到另一个处理 PHP 脚本的 Web 服务器PHP 执行。实现此目的的一种方法是通过以下代码:
var exec = require("child_process").exec; app.get('/', function(req, res) { exec("wget -q -O - http://localhost/", function (error, stdout, stderr) { res.send(stdout); }); });
以上是Node.js Web 服务器可以像 Apache 一样执行 PHP 脚本吗?的详细内容。更多信息请关注PHP中文网其他相关文章!