transform the enumeration of the array elements returned by parse_url

into <itemizedlist>


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70541 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gyozo Papp 2002-02-19 09:34:03 +00:00
parent 92d169b853
commit d65e985dee

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.26 $ -->
<!-- $Revision: 1.27 $ -->
<reference id="ref.url">
<title>URL Functions</title>
<titleabbrev>URLs</titleabbrev>
@ -70,9 +70,49 @@
<para>
This function returns an associative array returning any of the
various components of the URL that are present. This includes the
"scheme", "host", "port", "user", "pass", "path", "query", and
"fragment".
</para>
<itemizedlist>
<listitem>
<simpara>
<structfield>scheme</structfield> - e.g. http://
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>host</structfield>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>port</structfield>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>user</structfield>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>pass</structfield>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>path</structfield>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>query</structfield> - after the question mark <literal>?</literal>
</simpara>
</listitem>
<listitem>
<simpara>
<structfield>fragment</structfield> - after the hashmark <literal>#</literal>
</simpara>
</listitem>
</itemizedlist>
</para>
<para>
See also <function>pathinfo</function>.
</para>