6

我正在使用一个使用 php 中的 COM 端口连接到华为 3G 调制解调器的应用程序。这是我的代码:

<?php
include("sms.php");
$sms = new sms();
$device = "COM11";
exec("mode $device BAUD=9600 PARITY=n DATA=8 STOP=1 xon=off octs=off rts=on");
$comport = fopen($device, "r+b");
if ($comport === false){
    die("Failed opening com port<br/>");
}else{
    echo "Com Port Open<br/>";
}

//Set non-blocking mode for writing
//stream_set_blocking($comport, 0);
$sms->_blocking($comport,0);
$atcmd = "AT\r";
fputs($comport, $atcmd);

sleep(5); // Sleep for response from the modem

 // Set blocking mode for reading
$sms->_blocking($comport,1);
$res = fgets($comport, 4017);
if(trim($res) == "OK"){
    echo "Modem supports AT Commands<br/>";
}else{
    echo "Error response: ".$res;
}

fclose($comport);
?>

短信.php:

<?php
    class sms{
        function _blocking($device,$mode){
            stream_set_blocking($device, $mode);
            return true;
        }
    }
?>

这对我来说很好。现在的挑战是每次我连接到新的 USB 端口时,COM 都会为我的调制解调器而改变。有没有其他方法可以在 windows 中使用 php 自动检测设备?

4

1 回答 1

3

您需要通过一些名为 trough PHP 的 shell_exec() 的外部命令来确定 USB 设备的 COM 端口号。

对于 Windows,您可以尝试这个小工具:

http://todbot.com/blog/2012/03/02/listcomports-windows-command-line-tool-for-usb-to-serial/

https://github.com/todbot/usbSearch/

通过 shell_exec() 调用此工具后,您需要解析它的输出 (RegExp) 并根据公司/设备名称查找确切的 COM 端口号。

于 2014-04-11T15:42:28.560 回答