mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Something went very wrong... UNDO
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@93103 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d97c0c984a
commit
c2f216f540
3 changed files with 26 additions and 27 deletions
|
@ -1,26 +1,25 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- EN-Revision: 1.2 Maintainer: spic Status: ready -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/iconv.xml, last change in rev 1.1 -->
|
||||
<refentry id="function.iconv-get-encoding">
|
||||
<refnamediv>
|
||||
<refname>iconv_get_encoding</refname>
|
||||
<refpurpose>Aktuelle Einstellung für Zeichensatz-Konvertierung auslesen</refpurpose>
|
||||
<refpurpose>Get current setting for character encoding conversion</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Beschreibung</title>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>array</type><methodname>iconv_get_encoding</methodname>
|
||||
<methodparam choice="opt"><type>string</type><parameter>type</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Die Funktion gibt die aktuelle Einstellung von
|
||||
<function>ob_iconv_handler</function> als Array zurück Bei einem Fehler wird .
|
||||
&false; zurückgegeben.
|
||||
It returns the current settings of
|
||||
<function>ob_iconv_handler</function> as array or
|
||||
&false; in failure.
|
||||
</para>
|
||||
<para>
|
||||
Siehe auch:
|
||||
<function>iconv_set_encoding</function> und
|
||||
See also:
|
||||
<function>iconv_set_encoding</function> and
|
||||
<function>ob_iconv_handler</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
|
@ -1,26 +1,26 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/iconv.xml, last change in rev 1.1 -->
|
||||
<refentry id="function.iconv-set-encoding">
|
||||
<refnamediv>
|
||||
<refname>iconv_set_encoding</refname>
|
||||
<refpurpose>Einstellungen für die Zeichensatzkonvertierung setzen</refpurpose>
|
||||
<refpurpose>Set current setting for character encoding conversion</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Beschreibung</title>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>array</type><methodname>iconv_set_encoding</methodname>
|
||||
<methodparam><type>string</type><parameter>type</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>charset</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Die Funktion ändert den Wert von <parameter>type</parameter> in
|
||||
<parameter>charset</parameter> und gibt &true; bei Erfolg oder
|
||||
&false; bei einem Fehler in der Ausführung zurück.
|
||||
It changes the value of <parameter>type</parameter> to
|
||||
<parameter>charset</parameter> and returns &true; in success or
|
||||
&false; in failure.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title><function>iconv_set_encoding</function> Beispiel:</title>
|
||||
<title><function>iconv_set_encoding</function> example:</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
iconv_set_encoding("internal_encoding", "UTF-8");
|
||||
|
@ -30,8 +30,8 @@ iconv_set_encoding("output_encoding", "ISO-8859-1");
|
|||
</example>
|
||||
</para>
|
||||
<para>
|
||||
Siehe auch:
|
||||
<function>iconv_get_encoding</function> und
|
||||
See also:
|
||||
<function>iconv_get_encoding</function> and
|
||||
<function>ob_iconv_handler</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/iconv.xml, last change in rev 1.1 -->
|
||||
<refentry id="function.iconv">
|
||||
<refnamediv>
|
||||
<refname>iconv</refname>
|
||||
<refpurpose>Konvertiert Zeichenketten in einen anderen Zeichensatz</refpurpose>
|
||||
<refpurpose>Convert string to requested character encoding</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Beschreibung</title>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>iconv</methodname>
|
||||
<methodparam><type>string</type><parameter>in_charset</parameter></methodparam>
|
||||
|
@ -15,17 +15,17 @@
|
|||
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Die Funktion konvertiert die in Zeichensatz
|
||||
<parameter>in_charset</parameter> kodierte Zeichenkette <parameter>string</parameter> in eine Zeichenkette mit Kodierung
|
||||
<parameter>out_charset</parameter>. Es wird die konvertierte Zeichenkette zurückgeliefert oder
|
||||
&false;, wenn ein Fehler aufgetreten ist.
|
||||
It converts the string <parameter>string</parameter> encoded in
|
||||
<parameter>in_charset</parameter> to the string encoded in
|
||||
<parameter>out_charset</parameter>. It returns the converted
|
||||
string or &false;, if it fails.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title><function>iconv</function> Beispiel:</title>
|
||||
<title><function>iconv</function> example:</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
echo iconv("ISO-8859-1","UTF-8","Dies ist ein Test.");
|
||||
echo iconv("ISO-8859-1","UTF-8","This is test.");
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
|
|
Loading…
Reference in a new issue