diff --git a/reference/iconv/configure.xml b/reference/iconv/configure.xml
index 09711e94c2..97edb2ab3f 100644
--- a/reference/iconv/configure.xml
+++ b/reference/iconv/configure.xml
@@ -1,21 +1,22 @@
-
+
&reftitle.install;
- 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
+ PHP binary must be built with
+ the following configure line:
.
- Note to Win32 Users
+ Note to Windows® Users
- In order to enable this module on a Windows environment, you need to put
+ In order to enable this module on a Windows® environment, you need to put
a DLL file named iconv.dll or
iconv-1.3.dll (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 PATH environment variable
+ or one of the system directories of your Windows® installation.
diff --git a/reference/iconv/functions/iconv-mime-decode.xml b/reference/iconv/functions/iconv-mime-decode.xml
index e13efef247..3e16c2d66d 100644
--- a/reference/iconv/functions/iconv-mime-decode.xml
+++ b/reference/iconv/functions/iconv-mime-decode.xml
@@ -1,5 +1,5 @@
-
+
@@ -72,11 +72,11 @@
iconv_mime_decode example
->?php
+<?php
// This yields "Subject: Prüfung Prüfung"
echo iconv_mime_decode("Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?=",
0, "ISO-8859-1");
-?<
+?>
diff --git a/reference/iconv/functions/iconv-mime-encode.xml b/reference/iconv/functions/iconv-mime-encode.xml
index 151e0d7cf8..65a1e1472b 100644
--- a/reference/iconv/functions/iconv-mime-encode.xml
+++ b/reference/iconv/functions/iconv-mime-encode.xml
@@ -1,5 +1,5 @@
-
+
@@ -124,7 +124,7 @@ Subject: =?ISO-8859-1?Q?Pr=FCfung_f=FCr?= Entwerfen von einer MIME kopfzeile
iconv_mime_encode example:
->?php
+<?php
$preferences = array(
"input-charset" => "ISO-8859-1",
"output-charset" => "UTF-8",
@@ -138,7 +138,7 @@ echo iconv_mime_encode("Subject", "Prüfung Prüfung", $preferences);
$preferences["scheme"] = "B";
// This yields "Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?="
echo iconv_mime_encode("Subject", "Prüfung Prüfung", $preferences);
-?<
+?>