2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 09:15:58 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.urlencode" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2006-03-10 04:54:53 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>urlencode</refname>
|
|
|
|
<refpurpose>URL-encodes string</refpurpose>
|
|
|
|
</refnamediv>
|
2007-02-03 01:10:26 +00:00
|
|
|
|
2007-02-03 01:10:52 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2006-03-10 04:54:53 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>urlencode</methodname>
|
2020-12-26 19:26:31 +00:00
|
|
|
<methodparam><type>string</type><parameter>string</parameter></methodparam>
|
2006-03-10 04:54:53 +00:00
|
|
|
</methodsynopsis>
|
2007-02-03 01:10:52 +00:00
|
|
|
<para>
|
|
|
|
This function is convenient when encoding a string to be used in a query
|
|
|
|
part of a URL, as a convenient way to pass variables to the next page.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
2020-12-26 19:26:31 +00:00
|
|
|
<term><parameter>string</parameter></term>
|
2007-02-03 01:10:52 +00:00
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The string to be encoded.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
2006-03-10 04:54:53 +00:00
|
|
|
<para>
|
|
|
|
Returns a string in which all non-alphanumeric characters except
|
|
|
|
<literal>-_.</literal> have been replaced with a percent
|
2007-02-03 01:10:52 +00:00
|
|
|
(<literal>%</literal>) sign followed by two hex digits and spaces encoded
|
|
|
|
as plus (<literal>+</literal>) signs. It is encoded the same way that the
|
|
|
|
posted data from a WWW form is encoded, that is the same way as in
|
|
|
|
<literal>application/x-www-form-urlencoded</literal> media type. This
|
2010-11-07 01:49:04 +00:00
|
|
|
differs from the <link xlink:href="&url.rfc;3986">RFC 3986</link> encoding (see
|
2007-02-03 01:10:52 +00:00
|
|
|
<function>rawurlencode</function>) in that for historical reasons, spaces
|
|
|
|
are encoded as plus (+) signs.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
2006-03-10 04:54:53 +00:00
|
|
|
<example>
|
|
|
|
<title><function>urlencode</function> example</title>
|
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2003-07-16 17:25:02 +00:00
|
|
|
<?php
|
2002-04-15 00:12:54 +00:00
|
|
|
echo '<a href="mycgi?foo=', urlencode($userinput), '">';
|
2003-07-16 17:25:02 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2006-03-10 04:54:53 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>urlencode</function> and <function>htmlentities</function> example</title>
|
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2003-07-16 17:25:02 +00:00
|
|
|
<?php
|
2005-04-19 10:01:45 +00:00
|
|
|
$query_string = 'foo=' . urlencode($foo) . '&bar=' . urlencode($bar);
|
|
|
|
echo '<a href="mycgi?' . htmlentities($query_string) . '">';
|
2003-07-16 17:25:02 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2006-03-10 04:54:53 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2007-02-03 01:10:52 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="notes">
|
|
|
|
&reftitle.notes;
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
Be careful about variables that may match HTML entities. Things like
|
|
|
|
&amp, &copy and &pound are parsed by the browser and the
|
|
|
|
actual entity is used instead of the desired variable name. This is an
|
|
|
|
obvious hassle that the W3C has been telling people about for years.
|
2007-06-20 22:25:43 +00:00
|
|
|
The reference is here: <link xlink:href="&url.argsep;">&url.argsep;</link>.
|
2007-02-03 01:10:52 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
PHP supports changing the argument separator to the W3C-suggested
|
|
|
|
semi-colon through the arg_separator .ini directive. Unfortunately most
|
|
|
|
user agents do not send form data in this semi-colon separated format.
|
|
|
|
A more portable way around this is to use &amp; instead of & as
|
|
|
|
the separator. You don't need to change PHP's arg_separator for this.
|
|
|
|
Leave it as &, but simply encode your URLs using
|
|
|
|
<function>htmlentities</function> or
|
|
|
|
<function>htmlspecialchars</function>.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
2006-03-10 04:54:53 +00:00
|
|
|
<para>
|
2007-02-03 01:10:52 +00:00
|
|
|
<simplelist>
|
|
|
|
<member><function>urldecode</function></member>
|
|
|
|
<member><function>htmlentities</function></member>
|
|
|
|
<member><function>rawurlencode</function></member>
|
|
|
|
<member><function>rawurldecode</function></member>
|
2012-01-24 23:32:23 +00:00
|
|
|
<member><link xlink:href="&url.rfc;3986">RFC 3986</link></member>
|
2007-02-03 01:10:52 +00:00
|
|
|
</simplelist>
|
2006-03-10 04:54:53 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-02-03 01:10:52 +00:00
|
|
|
|
2006-03-10 04:54:53 +00:00
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2002-04-15 00:12:54 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|