Heim > Backend-Entwicklung > PHP-Tutorial > php通过http调用验证码短信接口源码

php通过http调用验证码短信接口源码

WBOY
Freigeben: 2016-06-23 13:39:07
Original
1614 Leute haben es durchsucht

通过验证码短信http调用接口,您可以很快速的在网站或者app中集成手机号验证功能,该源码只是核心代码,具体可以根据您的实际需求进行扩展。

<?phpfunction Post($curlPost,$url){		$curl = curl_init();		curl_setopt($curl, CURLOPT_URL, $url);		curl_setopt($curl, CURLOPT_HEADER, false);		curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);		curl_setopt($curl, CURLOPT_NOBODY, true);		curl_setopt($curl, CURLOPT_POST, true);		curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);		$return_str = curl_exec($curl);		curl_close($curl);		return $return_str;}$target = "http://106.ihuyi.com/webservice/sms.php?method=Submit";//替换成自己的测试账号,参数顺序和wenservice对应$post_data = "account=用户名&password=密码&mobile=手机号码&content=".rawurlencode("您的验证码是:4852。请不要把验证码泄露给其他人。");//$binarydata = pack("A", $post_data);echo $gets = Post($post_data, $target);//请自己解析$gets字符串并实现自己的逻辑?>
Nach dem Login kopieren

自助申请帐户地址: http://www.ihuyi.com/product.php
完整接口文件地址: http://www.ihuyi.com/upload/file/cu-fa-jie-kou.rar  

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage