阅读量:0
要在 Node.js 中调用 PHP,您可以使用 child_process
模块来执行 PHP 脚本。以下是一个简单的示例:
首先确保您已经安装了 PHP,并将其添加到了系统的 PATH 环境变量中。
创建一个 PHP 文件,例如
example.php
:
<?php echo "Hello from PHP!"; ?>
- 在 Node.js 中,使用
child_process
模块执行 PHP 脚本:
const { exec } = require('child_process'); exec('php example.php', (error, stdout, stderr) => { if (error) { console.error(`执行错误: ${error}`); return; } if (stderr) { console.error(`输出错误: ${stderr}`); } console.log(`输出结果: ${stdout}`); });
运行 Node.js 脚本后,您应该会看到 PHP 脚本的输出结果:Hello from PHP!
。
请注意,这种方法适用于简单的 PHP 脚本调用。对于更复杂的交互,您可能需要考虑使用其他库,例如 node-php-server 或 php-express。