http協議php短信接口調用代碼示例:
1.提交方式與編碼
http請求都應以POST形式提交,編碼爲UTF-8
2.部分核心代碼示例如下
final public static function sendSms($user,$password,$content,$mobiles){ $client = new HttpClient(self::HOST); $client->setDebug(true); if(! $client->post('/sdk/send' , array( 'accName' => $user, 'accPwd' => strtoupper(md5($password)), 'content' => mb_convert+encoding($content,'UTF-8',UTF-8), 'aimcodes' => $mobiles, 'dataType' =>"xml" ))){ return '-10000'; }else{ return self::_replyResult($client->getContent); } }