<?php
namespace Util;
use think\Log;
class SendVoice
{
public static function Post($postdata,$type=null){
'596ded97325e406d834da4622e4a0c3e','APPID'=>'d909564bd36e498da06c9c245ebfe6cd','Stype'=>0,'Callee'=>$postdata['mobile'],'Content'=>$postdata['Content']];
$url = 'https://ccapi.cyjcloud.com/20171101/notice/callEvent/v1?sig='.$sing;
}else{
$data = $postdata;
$url = 'https://ccapi.cyjcloud.com/20171101/record/callDetail/v1?sig='.$sing;
}
$data_string = json_encode($data);
/*echo $data_string;
die;*/
$curl = curl_init(); // 启动一个CURL会话
curl_setopt($curl, CURLOPT_URL,$url); // 要访问的地址
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); // 从证书中检查SSL加密算法是否存在
//curl_setopt($curl, CURLOPT_USERAGENT, ); // 模拟用户使用的浏览器
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
curl_setopt($curl, CURLOPT_POSTFIELDS, $data_string); // Post提交的数据包
curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
$tmpInfo = curl_exec($curl); // 执行操作
curl_close($curl); // 关闭CURL会话
Log::record("返回信息".date('Y-m-d H:i:s'),$tmpInfo);
Log::record("url信息",$url);
Log::record("发送信息",$data_string);
Log::init(['type' => 'File', 'path' =>'../runtime/sendLogs/']);
Log::write('发送语音全部接口'.date('Y-m-d H:i:s'));
return $tmpInfo; // 返回数据
}
}
调用
$message = SendVoice::Post($postdata,1);
网友评论