gpt4 book ai didi

php - 从 PHP 发送一个值到 Node JS 执行

转载 作者:太空宇宙 更新时间:2023-11-03 22:59:27 27 4
gpt4 key购买 nike

大家好!

我有一个名为 start.php 的文件,在该文件中我将 x 的值设置为 5。我还有另一个名为 check.js 的文件

在我的 PHP 文件中,我使用 shell_exec 运行 check.js

我的问题是,我应该怎么做才能让 check.js 检查 start.php 中 x 的值

使用 shell_exec 时可以这样做吗?如果不是我该怎么办?

致以诚挚的问候

最佳答案

调用 check.js 时,您可以在参数中传递 x

假设您有 check.js 位于这样的文件夹中 c:\apps\check.js 这里是一些您可以尝试的代码:

start.php

<?php

$x = 5;

$output = shell_exec("node.exe c:\apps\check.js x=$x");

echo "<pre>$output</pre>";

?>
<小时/>

c:\apps\check.js

const querystring = require('querystring');

const data = querystring.parse( process.argv[2] || '' );

const x = data.x;

console.log(x);
<小时/>

Node.js 代码使用 querystring 模块 ( https://nodejs.org/api/querystring.html ) 来解析 x

Update (if you need to pass more than one value)

start.php

<?php

$x = 5;
$y = 7;

$output = shell_exec("node.exe c:\apps\check.js x=$x+y=$y");

echo "<pre>$output</pre>";

?>
<小时/>

c:\apps\check.js

const querystring = require('querystring');

const data = querystring.parse( process.argv[2] || '', '+' );

console.log(data.x);
console.log(data.y);

<小时/>我希望这会有所帮助。

关于php - 从 PHP 发送一个值到 Node JS 执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51775525/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com