PHP: URL 関数 - Manual
PHP  
downloads | documentation | faq | getting help | mailing lists | | php.net sites | links | my php.net 
search for in the  
<token_namebase64_decode>
view the version of this page
Last updated: Tue, 21 Dec 2004

CXXI. URL 関数

導入

URL文字列を処理(エンコード、デコード、パース)します。

要件

これらの関数は、標準モジュールの一部として利用可能であり、常に使用できます。

インストール手順

これらの関数はPHPコアに含まれるため、使用す る際にインストールは不要です。

実行用の設定

この拡張モジュールは設定ディレクティブを全く定義しません。

リソース型

この拡張モジュールはリソース型を全く定義しません。

定義済みの定数

この拡張モジュールは定数を全く定義しません。

目次
base64_decode -- base64方式によりエンコードされたデータのデコード
base64_encode -- base64方式によるデータのエンコード
get_headers --  Fetches all the headers sent by the server in response to a HTTP request
get_meta_tags --  Extracts all meta tag content attributes from a file and returns an array
http_build_query -- Generate URL-encoded query string
parse_url -- URL を解釈し、その構成要素を返します
rawurldecode -- URL エンコードされた文字列をデコードする
rawurlencode -- RFC1738に基づきURLエンコードを行う
urldecode -- エンコードされたURL文字列のデコード
urlencode -- URL文字列のエンコード


add a note add a note User Contributed Notes
URL 関数
job oberio
14-Dec-2004 09:33
just want to share some tip:

my visitors usually type
in their browser (note: no www)
and i want them to automatically change the url
to use www.
(from to )

The solution is:

you can add the ff code to your existing index.php script

<?php
if  ($HTTP_HOST=="pinoylinux.com")
{
header("Location: "); die();
}

~~~
your existing codes here ~~~

?>

hope that helps
php at malaker dot com
17-Dec-2003 11:25
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_HOST,$REQUEST_URI);
echo "$url";

Expected result:

Actual result:
tappertzhofen at fdos dot de
23-Nov-2003 07:35
If you got a server which got only one subdomain and you can't add a subdomain you can easily create your own "subdomain script". You may create a file "index.php" or what ever your defaul filename is in the webpage root directory and add the following PHP Code:

<?php

// Get possible subdomain

$full_url = sprintf($HTTP_HOST);
$subdomain = "";

for(
$i = 0;$i<=strlen($full_url);$i++)
{

 
$dummy = substr($full_url,$i,1);

  if(
$dummy == ".")
  {
   break;
  }

 
$subdomain = $subdomain.$dummy;

}

// Get Subdomain List

if ($subdomain <> "www")
{

  switch(
$subdomain)
  {
   case
"download":
    
$real_url = "";
     break;
   case
"contact":
    
$real_url = "";
     break;

  }

 
header( "location: $real_url\r\n" );

?>
chemanfit at hotmail
07-Jun-2003 12:24
just a side note to the above you will need to add the ?

example

$page=$PHP_SELF."?".$_SERVER['QUERY_STRING'];
ignacio paz posse
13-Mar-2003 01:31
Note on the above: the point is that is that using $_SERVER['QUERY_STRING'] along with $PHP_SELF we will have passed whatever variables are already appended (as they might be needed for database queries)

example, given the following url:

using $PHP_SELF" we are passing
[scheme]:(), [host]: www.your_domain/  and [path]: somepage.php

adding $_SERVER['QUERY_STRING'], we pass that, plus [query]: variable=1
ignacio
12-Mar-2003 06:16
/*
May be this is obvious but helps me since I found it:
If I want to append a variable to the url and pass it to the same page. ( in this example I'm using action=email to include an email form on the user click) i do:
*/

// ...

<a href="<? echo $PHP_SELF,'?',$_SERVER['QUERY_STRING'],'&action=email' ?>">email to us</a>

// ...

/* somewhere in the the page (in my case at the bottom) I have: */

<? if ($action=='email') include('emailForm.htm'); ?>
jrg45 at pantheon dot yale dot edu
10-Jul-2002 09:14
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.
postmaster at asmatic dot ch
29-Apr-2002 04:15
If you want to get the filename requested on a global error page like a 404, just use this code...

// get the full var...
$page = $HTTP_SERVER_VARS["QUERY_STRING"];

// part[1] is the url...
// part[0] is the http code (404, etc).
if(strpos($page,";")>0) {
   $pageParts = explode(";",$page);
   $page = $pageParts[1];
}

// get only the filename...
$page = basename($page);
stephane-wantiez at tiscalinet dot be
07-Feb-2002 02:29
if you do this, it will be easier :
echo "";
verdy_p at wanadoo dot fr
26-May-2001 05:47
Note also that the URL shown in $HTTP_REFERER is not always the URL of the web page where the user clicked to invoke the PHP script.
This may instead be a document of your own web site, which contains an HTML element whose one attribute references the script. Note also that the current page fragment (#anchor) may be transmitted or not with the URL, depending on the browser.
Examples:
<FRAME src="your-page-script.php"8>
<IMAGE src="your-image-script.php">

In such case, browsers should transmit the URL of the container document, but some still persist in using the previous document in the browser history, and this could cause a different $HTTP_REFERER value be sent when the user comes back to the document referencing your script. If you wanna be sure that the actual current document or previous document in the history is sent, use client-side JavaScript to send it to your script:

<SCRIPT language="JavaScript"><!--
document.writeln('<FRAME src="your-page-script.php?js=1&amp;ref=' +
document.location + '">');
--></SCRIPT><NOSCRIPT>
<FRAME src="your-page-script.php?js=0">
</NOSCRIPT>

And then check the value of $js in your page script to generate appropriate content when the remote user agent does not support client-side scripts (such as most index/scan robots, some old or special simplified browsers, or browsers with JavaScript disabled by their users).
verdy_p at wanadoo dot fr
26-May-2001 04:55
Warning: when the PHP engine runs for your hosted web site, it may execute on a domain name which is completely different than the one the user requested in its browser. Many free web hosting site use proxies and/or multiple DNS entries for your hosted web site. This means that:
- the IP of the web server can change if multiple DNS entries are present (there may be several web servers running concurrently)
- reverse DNS name from the IP may give different domain name over time, or if the domain name is a CNAME only for a virtual web server hosting many domains
- the server running PHP may be different than the web server
- the web server may be hidden behind a proxy which balances the load between a farm of servers
- the queried host name in the HTTP headers may be different than the queried host name in the browser, if behind a redirecting proxy
- the actual path name of the ressource may be also different, with additional path elements: this is very common on free hosting servers, where you get a virtual CNAME domain, which gets translated by a proxy into an actual web server, and a domain-specific document root directory

So when thinking about using absolute path names you can retreive from PHP, beware that this may not be accurate to insert as absolute URL's in the HTML code built with PHP.

The best solution is then to ALWAYS USE relative URLs to reference documents and form scripts on your local server !

This applies to $PHP_SELF too, because it's an absolute pathname: don't use it directly but you can safely use basename($PHP_SELF) to reference your script within HTML forms:

<?
$self
=basename($PHP_SELF);
?>
<HTML><HEAD>
...
</HEAD><BODY>
<FORM method="GET" action="$self">
...
</FORM>
</BODY></HTML>
cgmckeever at yahoo dot com
19-Aug-2000 12:20
$HTTP_HOST still grabs the redirected server name.

ROCK N ROLL
jphilbin at portcitymail dot com
18-Aug-2000 07:56
To get the full url of what should be currently
in a users browser, try this:
$url = sprintf("%s%s%s","",$HTTP_HOST,$REQUEST_URI);
echo "$url";
tumor at kkt dot bme dot hu
01-Apr-2000 06:18
To check if a URL is valid, try to fopen() it. If fopen() results an error (returns false), then PHP cannot open the URL you asked. This is usually because it is not valid...

<token_namebase64_decode>
 Last updated: Tue, 21 Dec 2004
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: /
Last updated: Mon Mar 14 08:13:06 2005 Local time zone must be set--see zic manual page