MAH*_*HDI 2 php apache shell-exec node.js
大家好!
我有一个名为 start.php 的文件,在这个文件中我将 x 的值设置为 5。我有另一个名为 check.js 的文件
在我的 PHP 文件中,我使用 shell_exec 来运行 check.js
我的问题是,我应该怎么做才能让 check.js 检查 start.php 中 x 的值
在使用 shell_exec 时可以这样做吗?如果不是我该怎么办?
此致
您可以x在调用时传入参数check.js
假设您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>";
?>
Run Code Online (Sandbox Code Playgroud)
c:\apps\check.js
const querystring = require('querystring');
const data = querystring.parse( process.argv[2] || '' );
const x = data.x;
console.log(x);
Run Code Online (Sandbox Code Playgroud)
Node.js 代码使用querystring模块 ( https://nodejs.org/api/querystring.html ) 进行解析x。
更新(如果您需要传递多个值)
start.php
<?php
$x = 5;
$y = 7;
$output = shell_exec("node.exe c:\apps\check.js x=$x+y=$y");
echo "<pre>$output</pre>";
?>
Run Code Online (Sandbox Code Playgroud)
c:\apps\check.js
const querystring = require('querystring');
const data = querystring.parse( process.argv[2] || '', '+' );
console.log(data.x);
console.log(data.y);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
931 次 |
| 最近记录: |