码迷,mamicode.com
首页 > Web开发 > 详细

PHP 访问URL 解决AJAX 跨域问题

时间:2014-05-21 16:49:44      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:blog   class   c   code   http   a   

<?php
  $ch = curl_init();
  $rainbowdash = $_POST['args'];
  $fields = array( 'args='=>$rainbowdash);
  $postvars = ''; 
  foreach($fields as $key=>$value) {
    $postvars .= $key . $value;
  }

  $url = "http://192.168.62.89:9090/tts";
  curl_setopt($ch,CURLOPT_URL,$url);
  curl_setopt($ch,CURLOPT_POST,count($fields));
  curl_setopt($ch,CURLOPT_POSTFIELDS,$postvars);
  curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch,CURLOPT_CONNECTTIMEOUT ,3);
  curl_setopt($ch,CURLOPT_TIMEOUT, 20);
  $response = curl_exec($ch);
 
  echo $response;
  curl_close ($ch);
?>

PHP 访问URL 解决AJAX 跨域问题,布布扣,bubuko.com

PHP 访问URL 解决AJAX 跨域问题

标签:blog   class   c   code   http   a   

原文地址:http://blog.csdn.net/haifengzhilian/article/details/26383907

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!