⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transmitter.php

📁 PHP写的单纯的点对点短信发送接收程序
💻 PHP
字号:
<?php
//print "<pre>";
require_once "smpp.php";
$tx=new SMPP('localhost',2000);
//$tx->debug=true;
$tx->system_type="WWW";
$tx->addr_npi=1;
//print "open status: ".$tx->state."\n";
$tx->bindTransmitter("login","password");
$tx->sms_source_addr_npi=1;
//$tx->sms_source_addr_ton=1;
$tx->sms_dest_addr_ton=1;
$tx->sms_dest_addr_npi=1;
$tx->sendSMS("2121","79140000000","Hello world!");
$tx->close();
unset($tx);
//print "</pre>";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -