The content introduced in this article is about the direct call of 253 SMS interface PHP, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
<?php //namespace Vendor\Sms; class Sms{ private $API_SEND_URL='http://smssh1.253.com/msg/send/'; private $API_ACCOUNT='C0543'; private $API_PASSWORD='ItFBqxd2ed'; public function __construct(){ } function sendSMS($mobile,$msg,$need_status = 1){ //发送短信的接口参数 $post_data = array ( 'un' => $this->API_ACCOUNT, 'pw' => $this->API_PASSWORD, 'msg' => $msg, 'phone' => $mobile, 'rd' => $need_status ); $result = $this->curl_post($this->API_SEND_URL,http_build_query($post_data)); $result=preg_split("/[,\r\n]/",$result); return $result; } function send_state($state){ //返回的状态码 $statusStr = array( '0' =>'发送成功', '101'=>'无此用户', '102'=>'密码错', '103'=>'提交过快', '104'=>'系统忙', '105'=>'敏感短信', '106'=>'消息长度错', '107'=>'错误的手机号码', '108'=>'手机号码个数错', '109'=>'无发送额度', '110'=>'不在发送时间内', '111'=>'超出该账户当月发送额度限制', '112'=>'无此产品', '113'=>'extno格式错', '115'=>'自动审核驳回', '116'=>'签名不合法,未带签名', '117'=>'IP地址认证错', '118'=>'用户没有相应的发送权限', '119'=>'用户已过期', '120'=>'内容不是白名单', '121'=>'必填参数。是否需要状态报告,取值true或false', '122'=>'5分钟内相同账号提交相同消息内容过多', '123'=>'发送类型错误(账号发送短信接口权限)', '124'=>'白模板匹配错误', '125'=>'驳回模板匹配错误', '128'=>'内容解码失败' ); return $statusStr[$state]; } function curl_post($url, $post_data) { $ch = curl_init(); $timeout = 300; curl_setopt($ch, CURLOPT_URL, $url); //curl_setopt($ch, CURLOPT_REFERER, "http://api.dushiyangguan.com/"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); curl_setopt( $ch, CURLOPT_TIMEOUT,$timeout); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $res = curl_exec($ch); if (curl_errno($ch)) { echo 'Curl error: ' . curl_error($ch); } curl_close($ch); return $res; } }
Related recommendations:
PHP calls the program class of Google Translate
PHP calls the class in other files
Use PHP to call the so library file Code
The above is the detailed content of 253 SMS interface PHP direct call. For more information, please follow other related articles on the PHP Chinese website!

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
