downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Java> <http_build_str
Last updated: Fri, 20 May 2011

view this page in

http_build_url

(PECL pecl_http >= 0.21.0)

http_build_urlConstruir una URL

Descripción

string http_build_url ([ mixed $url [, mixed $parts [, int $flags = HTTP_URL_REPLACE [, array &$new_url ]]]] )

Construye una URL.

Los componentes de la segunda URL se combinarán con los de la primera, tal como se especifique en el parámetro flags.

Parámetros

url

(componente/s de) una URL, o bien en forma de string o bien en forma de array asociativo como en la respuesta de parse_url()

parts

lo mismo que el primer parámetro

flags

máscara "or" de bits de constantes HTTP_URL; por omisión, HTTP_URL_REPLACE

new_url

se rellena con los componentes de la URL generada, como en los valores devueltos por parse_url()

Valores devueltos

Devuelve la nueva URL en forma de string o FALSE en caso de error.

Ejemplos

Example #1 Ejemplo de http_build_url()

<?php
echo http_build_url("http://user@www.example.com/pub/index.php?a=b#files",
    array(
        
"scheme" => "ftp",
        
"host" => "ftp.example.com",
        
"path" => "files/current/",
        
"query" => "a=c"
    
),
    
HTTP_URL_STRIP_AUTH HTTP_URL_JOIN_PATH HTTP_URL_JOIN_QUERY HTTP_URL_STRIP_FRAGMENT
);
?>

El resultado del ejemplo sería:

ftp://ftp.example.com/pub/files/current/?a=c

Ver también



add a note add a note User Contributed Notes http_build_url
Ant P. 09-Jun-2010 04:58
This function has a useful undocumented feature - the defaults are set in such a way that calling it with no parameters returns the full URL of the page being accessed.
tycoonmaster at gmail dot com 21-Feb-2010 07:55
If you are looking for a PHP Version of this function, follow the link below:

http://www.mediafire.com/?zjry3tynkg5

Note: I would have added the function here, but I just couldn't get it past the line restrictions without making it impossible to read.

Enjoy.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites