在分享我的问题之前,我一直在尝试使用SMPP协议实现USSD,我将讨论到目前为止已经取得的成就:
但是以下是我的问题:
下面是我的代码,我相信使用此代码我应该能够做到,但是由于研究工作压力很大,我已经阅读并阅读了很多东西,但无法使其正常工作:
transciever.php
UIStackView
smpp.php
<?php
print "<pre>";
require_once "./smpp.php";
$tx=new SMPP('Ip Address',Port);
$tx->debug=true;
$tx->addr_npi=1;
print "open status: ".$tx->state."\n";
$tx->bindTransceiver("system_id","password");
$tx->sms_source_addr_npi=0;
$tx->sms_source_addr_ton=5;
$tx->sms_dest_addr_ton=1;
$tx->sms_dest_addr_npi=1;
$status = $tx->sendSMS("Hello","08023828392","Hello World");
$tx->close();
unset($tx);
echo $status;
print "</pre>";
?>
我希望收到你们的来信。 预先谢谢你。