使用 php 中的名称管道
只是一个一般性问题,从 php 脚本使用命名管道是否存在任何问题,目前我正在从 php 调用 bash 脚本来写入命名管道。
这将在 Debian Linux 上从 php 脚本与某些后台运行的 C 程序进行通信
just a general question are there any issues with using named pipes from a php script, currently i'm calling a bash script from php to write to a named pipe.
This would be on Debian Linux to communicate from a php script to some background running C program
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像写入文件一样写入命名管道。使用
fopen
函数。You can write to named pipe like as to file. Use for it
fopen
function.