PHP 8.5.0 RC 2 available for testing

URL 関数

目次

  • base64_decode — MIME base64 方式によりエンコードされたデータをデコードする
  • base64_encode — MIME base64 方式でデータをエンコードする
  • get_headers — HTTP リクエストに対するレスポンス内で サーバーによって送出された全てのヘッダを取得する
  • get_meta_tags — ファイル上のすべてのメタタグ情報を配列に展開する
  • http_build_query — URL エンコードされたクエリ文字列を生成する
  • parse_url — URL を解釈し、その構成要素を返す
  • rawurldecode — URL エンコードされた文字列をデコードする
  • rawurlencode — RFC 3986 に基づき URL エンコードを行う
  • urldecode — URL エンコードされた文字列をデコードする
  • urlencode — 文字列を URL エンコードする
add a note

User Contributed Notes 3 notes

up
3
chemanfit at hotmail
22 years ago
just a side note to the above you will need to add the ?

example

$page=$PHP_SELF."?".$_SERVER['QUERY_STRING'];
up
-1
php at malaker dot com
21 years ago
Following method do not show the URL in user browser (as the author claimed) if the code resides in the source page of FRAME or IFRAME (say SRC="sourcepage.php") . In that case the URL of the SOURCE page is displayed.

$url = sprintf("%s%s%s","http://",$HTTP_HOST,$REQUEST_URI);
echo "$url";

Expected result: http://localhost/urltest/framedpage.php

Actual result: http://localhost/urltest/sourcepage.php
up
-2
jrg45 at pantheon dot yale dot edu
23 years ago
Note that $_SERVER["HTTP_REFERER"] may not include GET data that was included in the referring address, depending on the browser. So if you rely on GET variables to generate a page, it's not a good idea to use HTTP_REFERER to smoothly "bounce" someone back to the page he/she came from.
To Top