有時候乙個頁面需要上乙個頁面的多個引數
通過頁面定向header("location: aaa.php?argument1=$argument1&argument2=$argument2&................);
以及超連結echo '';的方式傳遞引數可能就不太方便了
<?php
//製作引數陣列
$arr_arg=array($a,$b,$c,...........................);
//使用implode函式將陣列橋接成乙個字串
$arg=implode('-',$arr_arg);
//定向到b.php
hearder('location: b.php?arg='.$arg);
?>
<?php
//接受從a.php傳遞過來的引數,並用explode函式進行拆解,至此便可以再次以數字索引陣列的形式訪問每個引數
$arg=explode('-',$_get['arg']);
echo '';
print_r($arg);
echo '
';
?>
php跳轉清空頁面快取 php如何清除頁面快取?
清除頁面的方法 使用 header last modified gmdate d,d m y h i s gmt header cache control no cache,must revalidate 即可。在開發過程中我們常常會遇到頁面快取的問題 特別是html的快取 重新整理後還是舊版的數,...
swoole如何使php永久執行
有需要學習交流的友人 入 的咱們一起,有問題一起交流,一起進步!前提是你是學技術的。感謝閱讀!點此加入該群 jq.qq.com soole可以通過開啟守護程序使php永久執行。守護程序化。設定daemonize 1時,程式將轉入後台作為守護程序執行。長時間執行的伺服器端程式必須啟用此項。如果不啟用守...
VC 如何使程式執行後自己刪除自己
include include include include pragma comment lib,shell32.lib char szcommandline max path 10 設定本程序為實時執行,快速退出 setpriorityclass getcurrentprocess realt...