主に次のグローバル変数を使用して、現在の URL アドレスとサーバー変数を取得するための PHP プログラミングでのプログラミング: $_server["query_string"],$_server["request_uri"],$_server["script_name"],$_server["php_self"] 1,$_server["クエリ文字列"] 説明: クエリ文字列 2.$_server["request_uri"] 説明: このページにアクセスするには URI が必要です 3.$_server["スクリプト名"] 説明: 現在のスクリプトのパスが含まれます。 4.$_server["php_self"] 説明: 現在実行中のスクリプトのファイル名 例: 1. http://bbs.it-home.org/ (ホームページを直接開きます) 結果: $_server["クエリ文字列"] = "" $_server["request_uri"] = "/" $_server["スクリプト名"] = "/index.php" $_server["php_self"] = "/index.php" 2. http://bbs.it-home.org/?p=222 (クエリ付き) 結果: $_server["クエリ文字列"] = "p=222" $_server["request_uri"] = "/?p=222" $_server["スクリプト名"] = "/index.php" $_server["php_self"] = "/index.php" 3. http://bbs.it-home.org/index.php?p=222&q=biuuu 結果:
これらの変数または関数の類似点と相違点。 リクエストアドレスがあるとします: http://localhost:8080/test.php/age=20 test.php のフルパスは次のとおりです: d:/server/www/example/test.php 1)、getcwd() ブラウザによって要求されたページ ファイルが配置されているディレクトリ、つまり test.php ファイルが配置されているディレクトリを取得します: d:/server/www/example/, test.php で inculde("test_dir/test2.php") などの require または include ステートメントが実行される場合、 次に、test2.php の getcwd() 関数も、test.php が配置されているディレクトリを返します。 2)、__ファイル__ __file__ 変数が配置されているファイルの絶対パスを取得するために使用できるマジック変数。 例: test.php の __file__ は d:/server/www/example/test.php を取得します。 test_dir/test2.php の __file__ は d:/server/www/example/test_dir/test2.php を取得します。 3)、$_server["スクリプトファイル名"] ブラウザによって要求されたページ ファイルへのフル パスを取得します。 test.php および test_dir/test2.php で $_server["script_name"] を使用すると、d:/server/www/example/test.php が取得されます。 4)、$_server["スクリプト名"] ブラウザによって要求されたページ ファイルのファイル名を取得します。 注: $_server["script_name"] とは異なり、この変数はファイル名のみを取得し、パスは含まれません。 test.php および test_dir/test2.php で $_server["script_name"] を使用すると、test.php が作成されます。 もちろん、test.php や test_dir/test2.php でのbasename($_server["script_filename"])の実行は$_server["script_name"]と同じです。 test.php と test_dir/test2.php で realpath("test.php") を実行すると、結果は $_server["script_filename"] と同じになります。 5)、$_server["php_self"] ブラウザから要求されたページのファイル名が取得され、? 以降の内容が削除されます。 注: パスは含まれません。 たとえば、クライアントで http://localhost:8080/test.php?age=20&name=tom をリクエストします。 すると、test.php と test_dir/test2.php の両方の $_server["php_self"] が "test.php" を取得します。 「age=20&name=tom」は削除されます。 クライアントが http://localhost:8080/test.php/age=20&name=tom をリクエストした場合、 すると、test.php と test_dir/test2.php の両方の $_server["php_self"] が "test.php/age=20&name=tom" を取得します。 6)、$_server["request_uri"] ブラウザーによって要求されたページのファイル名と、ファイル名以降のすべてのコンテンツを取得します (注: # 記号以降のコンテンツは省略されます)。 たとえば、クライアントで http://localhost:8080/test.php?age=20&name=tom をリクエストします。 すると、test.php と test_dir/test2.php の両方の $_server["reuest_uri"] が "test.php" を取得します。 「age=20&name=tom」は削除されます。 クライアントが http://localhost:8080/test.php/age=20&name=tom をリクエストした場合、 すると、test.php と test_dir/test2.php の両方の $_server["request_uri"] が "test.php/age=20&name=tom" を取得します。 テスト.php:
|