使用Php连接串口

时间:2016-06-24 09:08:19

标签: php jquery html connection port

伙计们,

对于下面的代码,我收到一条错误,上面写着“功能未定义”。我无法获得应该包含的内容以使其运行。帮助将非常有用。

<?php
$fd = dio_open('/dev/ttyS0', O_RDWR | O_NOCTTY | O_NONBLOCK);
dio_close($fd);
?>

2 个答案:

答案 0 :(得分:1)

使用phpinfo()检查您的php版本,dio_open仅适用于

  

(PHP 4&gt; = 4.2.0,PHP 5&lt; = 5.0.5,PHP 7)

documentation

中所述

如果您的版本不支持,则应更新PHP安装

答案 1 :(得分:0)

当您使用* nix(我猜:))时,您可以使用此答案中所述的fopen命令:https://stackoverflow.com/a/14540953/1898458(您需要设置端口)