通过发送短信www.smsmatrix.com使用PHP的短信网关

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过发送短信www.smsmatrix.com使用PHP的短信网关相关的知识,希望对你有一定的参考价值。

Send SMS via www.smsmatrix.com SMS Gateway using php
See more examples at <A HREF="http:/www.smsmatrix.com">SMS/Voice/TTS Gateway</a>
  1. <?php
  2. $URL = 'http://www.smsmatrix.com/matrix';
  3. $PHONE = '12506063167'; // comma separated list of phone numbers
  4. $USERNAME = urlencode ('[email protected]');
  5. $PASSWORD = urlencode ('pass72727');
  6. $TXT = urlencode ('This is a test, pls ignore');
  7.  
  8. $Q = "$URL?username=$USERNAME&password=$PASSWORD&phone=$PHONE&txt=$TXT";
  9.  
  10. $res = implode ('', file ($Q));
  11. echo "Matrix API Response : $res ";
  12. ?>

以上是关于通过发送短信www.smsmatrix.com使用PHP的短信网关的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用PHP通过www.smsmatrix.com SMS Gateway发送短信

通过语音网关发送语音电话www.smsmatrix.com

使用发送语音电话(mp3或波形文件)www.smsmatrix.com网关

使用Java发送短消息到短消息网关

如何通过 Android 应用向用户发送短信通知

php 使用curl通过Plivo发送短信。