由于某些原因,需要在 PHP7 中运行我的 NodeJS 项目的一小部分。 我知道我可以制作一个内部API,但这会增加网络依赖性。
为解决此问题,我发现可以这样做
php test.php
如何为该 PHP文件 提供 JSON输入 ,其中数据存储在JS变量中不在文件中,并在另一个JS变量中接收输出。
function runPHP(jsonString){
....what to write here
...
return output_string;
}
注意:请不要建议查询参数,因为数据太大。
答案 0 :(得分:1)
我假设您想从nodejs进程中调用php scipt,以JSON发送一些参数,然后获取一些JSON并进行进一步处理。
php脚本:
<?php
// test.php
$stdin = fopen('php://stdin', 'r');
$json = '';
while ($line = fgets($stdin)) {
$json .= $line;
}
$decoded = \json_decode($json);
$decoded->return_message = 'Hello from PHP';
print \json_encode($decoded);
exit(0);
nodejs脚本:
// test.js
function runPHP(jsonString) {
const spawn = require('child_process').spawn;
const child = spawn('php', ['test.php']);
child.stdin.setEncoding('utf-8');
child.stdout.pipe(process.stdout);
child.stdin.write(jsonString + '\n');
child.stdin.end();
}
runPHP('{"message": "hello from js"}');
这将需要一些改进和错误处理...