从网站发送字节到串口
如何使用 PHP 将一个字节从远程网站发送到另一台连接到 PIC 芯片的计算机的串行端口?
How Can I send a byte from a remote website using PHP to a serial port in another computer connected to a PIC chip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 无法通过 HTTP 以外的任何方式直接与远程 PC 通信,只能通过用户的浏览器进行通信。也就是说,直到 Websocket 变得更加普遍。
如果没有在客户端计算机上运行经过签名的 Java 小程序,PHP 就无法直接或间接访问客户端计算机上的任何硬件。
PHP cannot talk directly to the remote PC by any means other than HTTP and then only via the user's browser. Until websockets become more commonplace, that is.
Short of running a signed java applet on the client machine, there's no way for PHP to directly, or indirectly, access any hardware on a client machine.