亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

中國站
幫助中心 > 通信 > API文檔 > 代碼示例 > PHP

PHP

方法一:
使用億速云短信擴展 https://github.com/yisu-cloud/sms

方法二:

  1. <?php
  2. function sendSms() {
  3. $url = "https://api.yisu.com/sms/sendSms";
  4. $accessId = "*****";
  5. $accessSecret = "*****";
  6. $params = [
  7. "timestamp" => time(),
  8. "nonce" => mt_rand(0, 99999999),
  9. "accessId" => $accessId
  10. ];
  11. $params["phone"] = "13800000000";
  12. $params["templateCode"] = 100001;
  13. $params["templateVars"] = json_encode(["code"=>111111, "min"=>10], true);
  14. ksort($params);
  15. $signStr = "";
  16. foreach ( $params as $key => $value ) {
  17. $signStr = $signStr . $key . "=" . $value . "&";
  18. }
  19. $signStr = substr($signStr, 0, -1);
  20. $verifySignature = base64_encode(hash_hmac("sha1", $signStr, $accessSecret, true));
  21. $params["signature"] = $verifySignature;
  22. $data = http_build_query($params);
  23. $options = array(
  24. "http" => array(
  25. "method" => "POST",
  26. "header" => "Content-Type:application/x-www-form-urlencoded",
  27. "content" => $data
  28. ));
  29. $context = stream_context_create($options);
  30. $result = file_get_contents($url, FILE_TEXT, $context);
  31. return $result;
  32. }
  33. echo sendSms();
  34. ?>
南京市| 阳山县| 兰坪| 烟台市| 辉南县| 荃湾区| 常宁市| 满洲里市| 黎平县| 新邵县| 银川市| 垦利县| 平定县| 诸城市| 栾城县| 灌南县| 东乡县| 隆昌县| 广河县| 论坛| 正定县| 平泉县| 财经| 和田县| 思南县| 若尔盖县| 铜梁县| 汨罗市| 上饶市| 平遥县| 嘉黎县| 永丰县| 宁城县| 北碚区| 克什克腾旗| 越西县| 长丰县| 那曲县| 安达市| 开江县| 航空|