gpt4 book ai didi

php - PHP 和 NodeJS 之间的通信

转载 作者:行者123 更新时间:2023-12-03 12:15:10 25 4
gpt4 key购买 nike

关闭。这个问题是opinion-based .它目前不接受答案。












想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题.

去年关闭。




Improve this question




我想知道在我的 PHP 脚本和在 localhost 上运行的 NodeJS 服务之间进行通信的最佳方式是什么(不仅仅是出于安全目的)。
我想只用 file_get_contents('http://localhost:8080/****') 获得我需要的 NodeJS 响应,这是最好的方法吗?

最佳答案

如果您只是在需要时共享一些数据,file_get_contents 是最佳选择(这是一个零成本的实现)
但是,如果您想要更实时和“ native ”的通信来无限制地流式传输数据,您可以在两者之间实现 TCP 套接字通信(但在大多数情况下这是一种矫枉过正)
或者当您不想使用网络进行传输时(即如果您正在移动大数据),您可以将其输出到文件并请求 NodeJS 读取它

file_put_contents($tmp_file, $large_data_for_node);
file_get_contents('http://localhost:8080/****?read='.$tmp_file);
unlink($tmp_file);

关于php - PHP 和 NodeJS 之间的通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62504466/

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