执行AT命令在php中发送短信

时间:2013-04-09 13:08:27

标签: php sms at-command

我正在尝试从PHP执行AT命令。

我尝试过exec()和shell_exec()

请不要建议第三方短信网关我的客户不想透露他的私人信息,并希望从他自己的服务器发送短信。

我有一个GSM调制解调器连接到一个串口,我可以通过“putty”访问,如图所示 putty screen 1

我可以输入AT命令发送短信,如下图所示。 enter image description here

我想通过PHP运行这些AT命令。

2 个答案:

答案 0 :(得分:11)

您好我是通过这个php代码在Windows 8上使用php类发送短信。

require "php_serial.class.php";
$serial = new phpSerial;
$serial->deviceSet("COM4");
$serial->confBaudRate(115200);

// Then we need to open it
$serial->deviceOpen();

// To write into
$serial->sendMessage("AT+CMGF=1\n\r"); 
$serial->sendMessage("AT+cmgs=\"+92234444444\"\n\r");
$serial->sendMessage("sms text\n\r");
$serial->sendMessage(chr(26));

//wait for modem to send message
sleep(7);
$read=$serial->readPort();
$serial->deviceClose();

PHP SERIAL class Link

答案 1 :(得分:2)

你只需要一个像这样的RS232通信类 http://www.phpclasses.org/package/3679-PHP-Communicate-with-a-serial-port.html

或者你也可以使用fopen()

exec('mode COM1: baud=115200 data=8 stop=1 parity=n xon=on');
$fd = fopen('COM1:', O_RDWR);
fwrite($fd,chr(0).chr(1));
fclose($fd);