yuchao 发表于 2018-2-11 12:03:36


            本文实例讲述了php实现跨域提交form表单的方法。分享给大家供大家参考,具体如下:
有时我们为了网站安全考虑,我们不允许直接跨域提交form表单数据,如果我们自己有这个需求呢?下面我们来介绍两种跨域的方法解决直接跨域问题。
下面我们来看看两种php跨域提交form的方法
一、通过php curl
function curlPost($url,$params)
{
   $postData = '';
   foreach($params as $k => $v)
   {
   $postData .= $k . '='.$v.'&';
   }
   rtrim($postData, '&');
   $ch = curl_init();
   curl_setopt($ch,CURLOPT_URL,$url);
   curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
   curl_setopt($ch,CURLOPT_HEADER, false);
   curl_setopt($ch, CURLOPT_POST, count($postData));
   curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
   $output=curl_exec($ch);
   curl_close($ch);
   return $output;
}
echo curlPost("http://test.com",array('name'=>"tank"));
页: [1]
查看完整版本: php实现跨域提交form表单的方法【2种方法】