Hecheng.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. namespace app\common\library;
  3. use app\common\model\Config;
  4. use think\Controller;
  5. class Hecheng extends Controller
  6. {
  7. //获取预支付订单
  8. public function hecheng($money,$pay_type){
  9. # 填写网页上申请的appkey 如 $apiKey="g8eBUMSokVB1BHGmgxxxxxx"
  10. $apiKey = "9sjcD2OQB71wBwGMEdGOvh2l";
  11. # 填写网页上申请的APP SECRET 如 $secretKey="94dc99566550d87f8fa8ece112xxxxx"
  12. $secretKey = "j4VzpHUmraneN6wNCiSx3lkMKoNXWa0X";
  13. # text 的内容为"欢迎使用百度语音合成"的urlencode,utf-8 编码
  14. # 可以百度搜索"urlencode"
  15. if ($pay_type=='weixin' || $pay_type=='yue'){
  16. $text = "全民创商家微信收款".$money."元。";
  17. }elseif ($pay_type=='zfb'){
  18. $text = "全民创商家支付宝收款".$money."元。";
  19. }
  20. $text2 = iconv("UTF-8", "GBK", $text);
  21. # 发音人选择, 基础音库:0为度小美,1为度小宇,3为度逍遥,4为度丫丫,
  22. # 精品音库:5为度小娇,103为度米朵,106为度博文,110为度小童,111为度小萌,默认为度小美
  23. $per = 0;
  24. #语速,取值0-15,默认为5中语速
  25. $spd = 4;
  26. #音调,取值0-15,默认为5中语调
  27. $pit = 5;
  28. #音量,取值0-9,默认为5中音量
  29. $vol = 6;
  30. // 下载的文件格式, 3:mp3(default) 4: pcm-16k 5: pcm-8k 6. wav
  31. $aue = 3;
  32. $formats = array(3 => 'mp3', 4 => 'pcm', 5 =>'pcm', 6 => 'wav');
  33. $format = $formats[$aue];
  34. $cuid = time();
  35. /** 公共模块获取token开始 */
  36. $auth_url = "https://openapi.baidu.com/oauth/2.0/token?grant_type=client_credentials&client_id=".$apiKey."&client_secret=".$secretKey;
  37. $ch = curl_init();
  38. curl_setopt($ch, CURLOPT_URL, $auth_url);
  39. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  40. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  41. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //信任任何证书
  42. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); // 检查证书中是否设置域名,0不验证
  43. curl_setopt($ch, CURLOPT_VERBOSE, false);
  44. $res = curl_exec($ch);
  45. if(curl_errno($ch))
  46. {
  47. print curl_error($ch);
  48. }
  49. curl_close($ch);
  50. $response = json_decode($res, true);
  51. if (!isset($response['access_token'])){
  52. echo "ERROR TO OBTAIN TOKEN\n";
  53. exit(1);
  54. }
  55. if (!isset($response['scope'])){
  56. echo "ERROR TO OBTAIN scopes\n";
  57. exit(2);
  58. }
  59. if (!in_array('audio_tts_post',explode(" ", $response['scope']))){
  60. echo "DO NOT have tts permission\n";
  61. // 请至网页上应用内开通语音合成权限
  62. exit(3);
  63. }
  64. $token = $response['access_token'];
  65. /** 公共模块获取token结束 */
  66. /** 拼接参数开始 **/
  67. // tex=$text&lan=zh&ctp=1&cuid=$cuid&tok=$token&per=$per&spd=$spd&pit=$pit&vol=$vol
  68. $params = array(
  69. 'tex' => urlencode($text), // 为避免+等特殊字符没有编码,此处需要2次urlencode。
  70. 'per' => $per,
  71. 'spd' => $spd,
  72. 'pit' => $pit,
  73. 'vol' => $vol,
  74. 'aue' => $aue,
  75. 'cuid' => $cuid,
  76. 'tok' => $token,
  77. 'lan' => 'zh', //固定参数
  78. 'ctp' => 1, // 固定参数
  79. );
  80. $paramsStr = http_build_query($params);
  81. $url = 'http://tsn.baidu.com/text2audio';
  82. $urltest = $url . '?' . $paramsStr;
  83. //echo $urltest . "\n"; // 反馈请带上此url
  84. return $urltest;
  85. //die;
  86. /** 拼接参数结束 **/
  87. $g_has_error = true;
  88. $ch = curl_init();
  89. curl_setopt($ch, CURLOPT_URL, $url);
  90. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  91. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  92. curl_setopt ($ch, CURLOPT_POST, 1);
  93. curl_setopt($ch, CURLOPT_POSTFIELDS, $paramsStr);
  94. function read_header($ch, $header){
  95. global $g_has_error;
  96. $comps = explode(":", $header);
  97. // 正常返回的头部 Content-Type: audio/*
  98. // 有错误的如 Content-Type: application/json
  99. if (count($comps) >= 2){
  100. if (strcasecmp(trim($comps[0]), "Content-Type") == 0){
  101. if (strpos($comps[1], "audio/") > 0 ){
  102. $g_has_error = false;
  103. }else{
  104. echo $header ." , has error \n";
  105. }
  106. }
  107. }
  108. return strlen($header);
  109. }
  110. //echo $urltest . "\n"; // 反馈请带上此urlcurl_setopt($ch, CURLOPT_HEADERFUNCTION, 'read_header');
  111. $data = curl_exec($ch);
  112. if(curl_errno($ch))
  113. {
  114. echo curl_error($ch);
  115. exit(2);
  116. }
  117. curl_close($ch);
  118. echo $urltest . "\n"; // 反馈请带上此url
  119. die;
  120. $file = $g_has_error ? "result.txt" : "result." . $format;
  121. file_put_contents($file, $data);
  122. echo "\n$file saved successed, please open it \n";
  123. }
  124. }