parse_url PHP Funktionen : PHP Übersicht : PHP Manual

parse_url

PHP Function parse_url / PHP Funktion parse_url

phplist » Webkatalog Script - Link Script » PHP Function Coder » parse_url
PHP Funktion
parse_url ( phplist Code 100% Relevanz )
Rubrik
URL Funktionen
Kurzform
parse_url -- Analysiert einen URL und gibt seine Bestandteile zurück
Vorschau
...parse_url parse_url (PHP 3, PHP 4, PHP 5) parse_url -- Analysiert einen URL und gibt seine Bestandteile Beschreibung mixed parse_url ( string url [, int component] ) Diese Funktion parst einen URL und gibt ein assoziatives Array , das die im URL vorhandenen Komponenten enthält. Diese Funktion ist nicht dazu gedacht, einen gegebenen URL zu ...
PHP Manual
[ parse_url php.net ]

PHP Funktion
rawurldecode ( phplist Code 38% Relevanz )
Rubrik
URL Funktionen
Kurzform
rawurldecode -- Dekodierung URL-kodierter Strings
Vorschau
... ( 'foo%20bar%40baz' ); // foo bar@baz ?> Anmerkung: rawurldecode() dekodiert Pluszeichen ('+') nicht als Leerzeichen. Dies tut nur urldecode() . Siehe auch rawurlencode() , urldecode() und urlencode() . parse_url rawurlencode...
PHP Manual
[ rawurldecode php.net ]

PHP Funktion
http_build_query ( phplist Code 32% Relevanz )
Rubrik
URL Funktionen
Kurzform
http_build_query -- Erstellen eines URL-kodierten Query-Strings
Vorschau
...this -> baz = 'boom' ; } } $data = new meineKlasse (); echo http_build_query ( $data ); // foo=bar&baz=boom ?> Anmerkung: Der Parameter arg_separator wurde mit PHP 5.1.2 hinzugefügt. Siehe auch parse_str() , parse_url() , urlencode() und array_walk() get_meta_tags parse_url...
PHP Manual
[ http_build_query php.net ]

PHP Funktion
URL Funktionen ( phplist Code 26% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... Konstanten werden von dieserErung definiert und stehen nur zur Verfügung, wenn die Erung entwederstatisch in PHP kompiliert oder dynamisch zur Laufzeit geladen wurde. The following constants are meant to be used with parse_url() and are available since PHP 5.1.2. PHP_URL_SCHEME ( integer ) PHP_URL_HOST ( integer ) PHP_URL_PORT ( integer ) PHP_URL_USER ( integer ) PHP_URL_PASS ( integer ) PHP_URL_PATH ( integer ) PHP_URL_QUERY ( integer...
PHP Manual
[ URL Funktionen php.net ]

PHP Funktion
stream_wrapper_register ( phplist Code 13% Relevanz )
Rubrik
Stream Functions
Kurzform
stream_wrapper_register -- Register a URL wrapper implemented as a PHP class
Vorschau
...mode, int options, string opened_path ) This method is called immediately after your stream object is created. path specifies the URL that was passed to fopen() and that this object is expected to retrieve. You can use parse_url() to break it apart. mode is the mode used to open the file, as detailed for fopen() . You are responsible for checking that mode is valid for the path requested. options holds additional flags set by the streams API...
PHP Manual
[ stream_wrapper_register php.net ]