Heim >php教程 >php手册 >php如何跨域提交form表单?本文介绍2种方法

php如何跨域提交form表单?本文介绍2种方法

WBOY
WBOYOriginal
2016-05-23 08:33:38907Durchsuche

有时我们为了网站安全考虑,我们不允许直接跨域提交form表单数据,如果我们自己有这个需求呢?下面我们来介绍两种跨域的方法解决直接跨域问题.

下面我们来看看两种php跨域提交form的方法.

一,通过php curl

<?php
function curlPost($url,$params)   
{   
    $postData = &#39;&#39;;   
    foreach($params as $k => $v)   
    {   
        $postData .= $k . &#39;=&#39;.$v.&#39;&&#39;;   
    }   
    rtrim($postData, &#39;&&#39;);   
    $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://phprm.com",array(&#39;name&#39;=>"tank"));

 

以前很多人用curl来抓,邮箱的通讯录,不过现在已经不可以了,哈哈.

二,利用jquery form,ajax提交

1,下载jquery.form.js

2,js代码

$(&#39;#testform&#39;).submit(function() {   
    $(this).ajaxSubmit({   
    type: &#39;post&#39;, // 提交方式 get/post   
    dataType:"json",//数据类型   
    url: &#39;your url&#39;, // 需要提交的 url   
    success: function(data) { // data 保存提交后返回的数据,一般为 json 数据   
    // 此处可对 data 作相关处理   
    alert(&#39;提交成功!&#39;);   
    }   
    $(this).resetForm(); // 提交后重置表单   
    });   
    return false; // 阻止表单自动提交事件   
});

 

3,php代码

header("Access-Control-Allow-Origin:*"); //跨域权限设置,允许所有 
header("Access-Control-Allow-Origin:http://www.phprm.com"); //只允许test.com跨域提交数据


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn