今天给大家分享的代码示例是秒赛短信验证码平台为方便用户接入网站/app/各种系统,提供的PHP短信接口请求的代码示例,供大家参考。
$msg,'account'=>$account,'pswd'=>$pswd,'mobile'=>
$mobile,'needstatus'=>$needstatus,'product'=>$product);
$result = send($ch,$data);
echo '';print_r($result);
curl_close($ch);
/***************************************************************************************/
//验证码
function send($ch,$data){
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
return curl_exec($ch);
}
?>