PHP Headerページジャンプに使用するいくつかの注意事項


前言
本論文では、PHPにおいてheader("location:test.php")でジャンプする場合、以下の点に注意してください。新米のよくある問題を解決するのに役立ちます。
一、locationと「:」の間にスペースがないと、エラーが発生します。
二、headerを使う前には何の出力もありません。
三、header後のPHPコードも実行されます。
以下は、aspにおけるリダイレクトresponse.redirectとの比較である。
例1:

response.redirect "../test.asp"
header("location:../test.php");
両者の違い:
aspのredirect関数は、クライアントにヘッダファイルを送信した後に機能してもよい。
如き

<html><head></head><body>
<%response.redirect "../test.asp"%>
</body></html>
検索はphpの中で次のコードはエラーが発生します。

<html><head></head><body>
<?
header("location:../test.php");
?>
</body></html>
このようにするしかない:

<?
header("location:../test.php");
?>
<html><head></head><body>...</body></html>
つまり、header関数の前にはお客様にどんなデータも送信できません。
例2:
asp中

<html><head></head><body>
<%
response.redirect "../a.asp"
response.redirect "../b.asp"
%>
</body></html>
結果はリダイレクトa.aspファイルです。
phpは

<?
header("location:../a.php");
header("location:../b.php");
?>
<html><head></head><body></body></html>
私達はそれがリダイレクトb.php.
もとはaspでredirectを実行した後、後のコードを実行しませんでした。
phpはheaderを実行した後、次のコードを実行し続けます。
この面ではphp中のheaderリダイレクトはasp中のリダイレクトに及ばないです。時々リダイレクトして、後のコードを実行できません。
一般的には私達が使います

if(...)
header("...");
else
{
...
}
しかし、私たちは簡単に次の方法を使うことができます。

if(...)
{ header("...");exit();}
なお、Unicode(UTF-8)で符号化する場合にも問題が発生し、キャッシュ設定の調整が必要である。

<[email=%@]%@LANGUAGE="VBSCRIPT[/email]" CODEPAGE="936"%>
<%if Request.ServerVariables("SERVER_NAME")="s.jb51.net" then
response.redirect "news/index.htm"
else%>
<%end if%>
<script>
var url = location.href;
if(url.indexOf('http://www.devdao.com/')!=-1)location.href='/index/index.htm';
if(url.indexOf('http://www.knowsky.com/')!=-1)location.href='/index1/index.htm';
if(url.indexOf('http://www.google.com/')!=-1)location.href='/cn/index.asp';
if(url.indexOf('http://www.baidu.com/')!=-1)location.href='/cn/index.asp';
</script>
締め括りをつける
以上はこの文章の全部の内容です。皆さんの勉強や仕事に一定の助けを与えてほしいです。もし疑問があれば、メッセージを残して交流してもいいです。