Correct yet other funny typos: &lt; <=> %gt; :)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@147294 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Moriyoshi Koizumi 2003-12-24 01:32:11 +00:00
parent 59616304ea
commit 1c1353db2f
3 changed files with 14 additions and 13 deletions

View file

@ -1,21 +1,22 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<section id="iconv.installation">
&reftitle.install;
<para>
To be able to use the functions defined in this module you must compile
your PHP interpreter using the configure line
To use functions provided by this module, the
<application>PHP</application> binary must be built with
the following configure line:
<option role="configure">--with-iconv[=DIR]</option>.
</para>
<note>
<title>Note to Win32 Users</title>
<title>Note to Windows&reg; Users</title>
<simpara>
In order to enable this module on a Windows environment, you need to put
In order to enable this module on a Windows&reg; environment, you need to put
a DLL file named <emphasis>iconv.dll</emphasis> or
<emphasis>iconv-1.3.dll</emphasis> (prior to 4.2.1)
which is bundled with the PHP/Win32 binary package into a directory
that is specified by the PATH environment variable
or one of the system directories of your windows installation.
specified by the <literal>PATH</literal> environment variable
or one of the system directories of your Windows&reg; installation.
</simpara>
</note>
</section>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- Generated by xml_proto.php v2.0. Found in /scripts directory of phpdoc. -->
<refentry id="function.iconv-mime-decode">
<refnamediv>
@ -72,11 +72,11 @@
<example>
<title><function>iconv_mime_decode</function> example</title>
<programlisting role="php">
&gt;?php
&lt;?php
// This yields "Subject: Pr&uuml;fung Pr&uuml;fung"
echo iconv_mime_decode("Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?=",
0, "ISO-8859-1");
?&lt;
?&gt;
</programlisting>
</example>
<para>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- Generated by xml_proto.php v2.0. Found in /scripts directory of phpdoc. -->
<refentry id="function.iconv-mime-encode">
<refnamediv>
@ -124,7 +124,7 @@ Subject: =?ISO-8859-1?Q?Pr=FCfung_f=FCr?= Entwerfen von einer MIME kopfzeile
<example>
<title><function>iconv_mime_encode</function> example:</title>
<programlisting role="php">
&gt;?php
&lt;?php
$preferences = array(
"input-charset" => "ISO-8859-1",
"output-charset" => "UTF-8",
@ -138,7 +138,7 @@ echo iconv_mime_encode("Subject", "Pr&uuml;fung Pr&uuml;fung", $preferences);
$preferences["scheme"] = "B";
// This yields "Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?="
echo iconv_mime_encode("Subject", "Pr&uuml;fung Pr&uuml;fung", $preferences);
?&lt;
?&gt;
</programlisting>
</example>