将 PHP 数组传递给 NodeJS
Pass PHP Array to NodeJS
如何将 PHP 数组传递给 Nightmare NodeJS 脚本?这是我所在的位置:
/*Original array $titles =
Array
(
[0] => title 1 with, a comma after with
[1] => title 2
[2] => title 3
[3] => title 4
)
*/
//PHP
$json_titles = json_encode($titles);
echo $json_titles;
// Output: ["title 1 with, a comma after with","title 2","title 3","title 4"]
// Pass to Nightmare NodeJS script with:
shell_exec('xvfb-run node app.js ' . $json_titles);
//NodeJS app.js:
const getTitles = process . argv[2];
console.log(getTitles)
// Output: [title 1 with, a comma after with,title 2,title 3,title 4]
如何将 PHP 中的相同数组传给 NodeJS?
正如您在下面看到的,Simon 使用 escapeshellarg 进行了救援。谢谢西蒙!
我还最终在 Node JS 脚本中多了一步。我需要:getTitles = JSON.parse(getTitles);
像这样更改 shell_exec 以转义 json:
shell_exec('xvfb-run node app.js ' . escapeshellarg($json_titles));
这会转义您 JSON 中的双引号,以便将它们正确传递给节点。
每次将变量传递到命令行时都应该这样做,以减少错误和安全风险。
编辑:正如 OP 所发现的那样,Node 还必须解析 JSON,因为它将参数作为字符串获取。这可以在节点脚本中完成,如下所示:
ParsedTitles = JSON.parse(getTitles);
如何将 PHP 数组传递给 Nightmare NodeJS 脚本?这是我所在的位置:
/*Original array $titles =
Array
(
[0] => title 1 with, a comma after with
[1] => title 2
[2] => title 3
[3] => title 4
)
*/
//PHP
$json_titles = json_encode($titles);
echo $json_titles;
// Output: ["title 1 with, a comma after with","title 2","title 3","title 4"]
// Pass to Nightmare NodeJS script with:
shell_exec('xvfb-run node app.js ' . $json_titles);
//NodeJS app.js:
const getTitles = process . argv[2];
console.log(getTitles)
// Output: [title 1 with, a comma after with,title 2,title 3,title 4]
如何将 PHP 中的相同数组传给 NodeJS?
正如您在下面看到的,Simon 使用 escapeshellarg 进行了救援。谢谢西蒙! 我还最终在 Node JS 脚本中多了一步。我需要:getTitles = JSON.parse(getTitles);
像这样更改 shell_exec 以转义 json:
shell_exec('xvfb-run node app.js ' . escapeshellarg($json_titles));
这会转义您 JSON 中的双引号,以便将它们正确传递给节点。
每次将变量传递到命令行时都应该这样做,以减少错误和安全风险。
编辑:正如 OP 所发现的那样,Node 还必须解析 JSON,因为它将参数作为字符串获取。这可以在节点脚本中完成,如下所示:
ParsedTitles = JSON.parse(getTitles);