溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php實現(xiàn)post跳轉(zhuǎn)

發(fā)布時間:2020-07-12 17:54:10 來源:網(wǎng)絡(luò) 閱讀:25552 作者:hgditren 欄目:web開發(fā)

大家否知道php可以利用header('Location')實現(xiàn)get請求跳轉(zhuǎn)。

php利用curl可以實現(xiàn)模擬post請求。

但是卻找不到php現(xiàn)成的實現(xiàn)post跳轉(zhuǎn)。

那么問題來了,如果有這個需求該怎么實現(xiàn)呢?

今天在這里,利用form+js跟大家攢一個php的post跳轉(zhuǎn)的方法。


index.php(發(fā)起跳轉(zhuǎn)頁面)

<?php
//定義post處理頁面url
$actionUrl='./action.php';

//獲取當(dāng)前頁面的url
$url='http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'];

//解析url
$parseInfo=parse_url($url);

//獲取url中的參數(shù)部分
$queryString=$parseInfo['query'];

//將querycan參數(shù)解析到數(shù)組變量
$queryArr=[];
parse_str($queryString,$queryArr);

//循環(huán)拼接表單項
$formItemString='';
foreach($queryArr as $key=>$value){
    $formItemString.="<input name='{$key}' type='text' value='{$value}'/>";
}

//構(gòu)造表單并跳轉(zhuǎn)
$content=<<<EOF
<form style='display:none' name='submit_form' id='submit_form' action='{$actionUrl}' method='post'>
{$formItemString}
</form>
<script type="text/javascript">
document.submit_form.submit();
</script>
EOF;

exit($content);



action.php(跳轉(zhuǎn)目標(biāo)頁面)

<?php
//打印post接收到的數(shù)據(jù)
echo print_r($_POST,true);


無圖無真相,各位看官都來瞧瞧。

get訪問:

http://yoururl/index.php?name=jack&age=100&sex=boy&no=001

php實現(xiàn)post跳轉(zhuǎn)



真相在這!自動post跳轉(zhuǎn)到了目標(biāo)頁面,且可以在目標(biāo)頁面里面獲取到post值。


php實現(xiàn)post跳轉(zhuǎn)


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI