$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, config('LOG_URL').'/index.php?s=api/index/get_look_log');
curl_setopt($ch, CURLOPT_HEADER, 0);//设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_curl);
$result = curl_exec($ch);
curl_close($ch);