如何在Node.js里调用PHP

avatar
作者
筋斗云
阅读量:0

要在 Node.js 中调用 PHP,您可以使用 child_process 模块来执行 PHP 脚本。以下是一个简单的示例:

  1. 首先确保您已经安装了 PHP,并将其添加到了系统的 PATH 环境变量中。

  2. 创建一个 PHP 文件,例如 example.php

<?php echo "Hello from PHP!"; ?> 
  1. 在 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-serverphp-express

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!