svn: /phpdoc/de/trunk/ reference/sybase/book.xml reference/tokenizer/configure.xml reference/tokenizer/examples.xml reference/tokenizer/functions/token-get-all.xml reference/url/functions/base64-decode.xml reference/url/functions/get-meta-tags.xml reference/url/functions/http-build-query.xml reference/url/functions/parse-url.xml reference/var/functions/print-r.xml reference/var/functions/unserialize.xml reference/var/functions/unset.xml reference/var/functions/var-export.xml reference/xml/functi
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Wed, 18 Apr 2018 16:05:23 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=344718
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/reference/sybase/book.xml
U phpdoc/de/trunk/reference/tokenizer/configure.xml
U phpdoc/de/trunk/reference/tokenizer/examples.xml
U phpdoc/de/trunk/reference/tokenizer/functions/token-get-all.xml
U phpdoc/de/trunk/reference/url/functions/base64-decode.xml
U phpdoc/de/trunk/reference/url/functions/get-meta-tags.xml
U phpdoc/de/trunk/reference/url/functions/http-build-query.xml
U phpdoc/de/trunk/reference/url/functions/parse-url.xml
U phpdoc/de/trunk/reference/var/functions/print-r.xml
U phpdoc/de/trunk/reference/var/functions/unserialize.xml
U phpdoc/de/trunk/reference/var/functions/unset.xml
U phpdoc/de/trunk/reference/var/functions/var-export.xml
U phpdoc/de/trunk/reference/xml/functions/utf8-decode.xml
U phpdoc/de/trunk/reference/xml/functions/utf8-encode.xml
U phpdoc/de/trunk/reference/xmlreader/xmlreader/readinnerxml.xml
U phpdoc/de/trunk/reference/xmlreader/xmlreader/readouterxml.xml
U phpdoc/de/trunk/reference/xmlreader/xmlreader/readstring.xml
U phpdoc/de/trunk/reference/xsl/xsltprocessor/getsecurityprefs.xml
U phpdoc/de/trunk/reference/xsl/xsltprocessor/setsecurityprefs.xml
U phpdoc/de/trunk/reference/xsl/xsltprocessor/transformtoxml.xml
U phpdoc/de/trunk/reference/zlib/functions/zlib-encode.xml
U phpdoc/de/trunk/security/sessions.xml
svn-diffs-344718.txt
(text/x-diff, 31.2 KB)
Modified: phpdoc/de/trunk/reference/sybase/book.xml
===================================================================
--- phpdoc/de/trunk/reference/sybase/book.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/sybase/book.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 330340 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 340045 Maintainer: hholzgra Status: ready -->
<book xml:id="book.sybase" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="bundledexternal" ?>
@@ -9,8 +9,9 @@
<!-- {{{ preface -->
<preface xml:id="intro.sybase">
&reftitle.intro;
- <para>
- </para>
+ <warning>
+ <simpara>Ab PHP 7.0.0 wurde die sybase_ct Extension entfernt.</simpara>
+ </warning>
</preface>
<!-- }}} -->
Modified: phpdoc/de/trunk/reference/tokenizer/configure.xml
===================================================================
--- phpdoc/de/trunk/reference/tokenizer/configure.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/tokenizer/configure.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,20 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 297028 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 341344 Maintainer: nobody Status: ready -->
<!-- $Revision$ -->
+
<section xml:id="tokenizer.installation" xmlns="http://docbook.org/ns/docbook">
&reftitle.install;
<para>
- Seit PHP 4.3.0 sind diese Funktionen standardmäßig aktiviert. Für ältere
- Versionen muß PHP mit der Option <option role="configure">--enable-tokenizer</option>
- konfiguriert und kompiliert werden. Die Unterstützung kann mit der Option
- <option role="configure">--disable-tokenizer</option> deaktiviert werden.
+ Diese Funktionen sind standardmäßig aktiviert.
</para>
&windows.builtin;
- <note>
- <simpara>
- Ab PHP 4.3.0 stehen die Funktionen standardmäßig zur Verfügung.
- </simpara>
- </note>
</section>
<!-- Keep this comment at the end of the file
Modified: phpdoc/de/trunk/reference/tokenizer/examples.xml
===================================================================
--- phpdoc/de/trunk/reference/tokenizer/examples.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/tokenizer/examples.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 344712 Maintainer: nobody Status: ready -->
<appendix xml:id="tokenizer.examples">
&reftitle.examples;
@@ -14,21 +14,6 @@
<programlisting role="php">
<![CDATA[
<?php
-/*
- * T_ML_COMMENT steht in PHP 5 nicht zur Verfügung.
- * Die folgenden drei Zeilen definieren die Konstante
- * um Abwärtskompatibilität zu gewährleisten.
- *
- * Die nächsten zwei Zeilen definieren die nur in PHP 5
- * verfügbare Konstante T_DOC_COMMENT, die für PHP 4
- * mit T_ML_COMMENT maskiert wird.
- */
-if (!defined('T_ML_COMMENT')) {
- define('T_ML_COMMENT', T_COMMENT);
-} else {
- define('T_DOC_COMMENT', T_ML_COMMENT);
-}
-
$source = file_get_contents('example.php');
$tokens = token_get_all($source);
@@ -42,8 +27,7 @@
switch ($id) {
case T_COMMENT:
- case T_ML_COMMENT: // wir haben diese
- case T_DOC_COMMENT: // und diese Konstante definiert
+ case T_DOC_COMMENT:
// Kommentare ignorieren
break;
Modified: phpdoc/de/trunk/reference/tokenizer/functions/token-get-all.xml
===================================================================
--- phpdoc/de/trunk/reference/tokenizer/functions/token-get-all.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/tokenizer/functions/token-get-all.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 297028 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 338345 Maintainer: nobody Status: ready -->
<!-- $Revision$ -->
+
<refentry xml:id="function.token-get-all" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>token_get_all</refname>
@@ -11,6 +12,7 @@
<methodsynopsis>
<type>array</type><methodname>token_get_all</methodname>
<methodparam><type>string</type><parameter>source</parameter></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>flags</parameter><initializer>0</initializer></methodparam>
</methodsynopsis>
<para>
<function>token_get_all</function> parst den angegebenen Quelltext <parameter>source</parameter>
@@ -34,6 +36,22 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>flags</parameter></term>
+ <listitem>
+ <para>
+ Gültige Flags:
+ <itemizedlist>
+ <listitem>
+ <simpara>
+ <constant>TOKEN_PARSE</constant> - Erkennt die Möglichkeit,
+ reservierte Wörter unter bestimmten Umständen zu verwenden.
+ </simpara>
+ </listitem>
+ </itemizedlist>
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1>
@@ -71,6 +89,53 @@
</programlisting>
</example>
</para>
+ <para>
+ <example>
+ <title>
+ <function>token_get_all</function> für eine Klasse, die ein reserviertes
+ Wort benutzt
+ </title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+
+$source = <<<'code'
+<?php
+
+class A
+{
+ const PUBLIC = 1;
+}
+code;
+
+$tokens = token_get_all($source, TOKEN_PARSE);
+
+foreach ($tokens as $token) {
+ if (is_array($token)) {
+ echo token_name($token[0]) , PHP_EOL;
+ }
+}
+?>
+]]>
+ </programlisting>
+ &example.outputs.similar;
+ <screen>
+<![CDATA[
+T_OPEN_TAG
+T_WHITESPACE
+T_CLASS
+T_WHITESPACE
+T_STRING
+T_CONST
+T_WHITESPACE
+T_STRING
+T_LNUMBER
+]]>
+ </screen>
+ </example>
+ Ohne das <constant>TOKEN_PARSE</constant>-Flag würde das vorletzte Token
+ <constant>T_PUBLIC</constant> statt <constant>T_STRING</constant> sein.
+ </para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
@@ -85,6 +150,13 @@
</thead>
<tbody>
<row>
+ <entry>7.0.0</entry>
+ <entry>
+ Der optionale <parameter>flags</parameter> Parameter wurde mitsamt
+ dem <constant>TOKEN_PARSE</constant>-Flag hinzugefügt.
+ </entry>
+ </row>
+ <row>
<entry>5.2.2</entry>
<entry>Die Zeilennummer wird im dritten Element zurückgegeben
</entry>
Modified: phpdoc/de/trunk/reference/url/functions/base64-decode.xml
===================================================================
--- phpdoc/de/trunk/reference/url/functions/base64-decode.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/url/functions/base64-decode.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 343899 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.base64-decode" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -13,7 +13,7 @@
<methodsynopsis>
<type>string</type><methodname>base64_decode</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>strict</parameter><initializer>false</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>strict</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
Dekodiert base64-kodierte Daten, die in <parameter>data</parameter>
@@ -37,8 +37,10 @@
<term><parameter>strict</parameter></term>
<listitem>
<para>
- Gibt &false; zurück, wenn der Input Zeichen enthält, die nicht im
- "base64-Alphabet" enthalten sind.
+ Ist der <parameter>strict</parameter>-Parameter gleich &true;, dann gibt
+ die <function>base64_decode</function>-Funktion &false; zurück, wenn die
+ Eingabe Zeichen enthält, die nicht im Base64-Alphabet vorkommen.
+ Andernfalls werden ungültige Zeichen stillschweigend ausgesondert.
</para>
</listitem>
</varlistentry>
Modified: phpdoc/de/trunk/reference/url/functions/get-meta-tags.xml
===================================================================
--- phpdoc/de/trunk/reference/url/functions/get-meta-tags.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/url/functions/get-meta-tags.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334592 Maintainer: sammywg Status: ready -->
-<!-- splitted from ./de/functions/strings.xml, last change in rev 1.2 -->
+<!-- EN-Revision: 343899 Maintainer: sammywg Status: ready -->
+
<refentry xml:id="function.get-meta-tags" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>get_meta_tags</refname>
@@ -14,7 +14,7 @@
<methodsynopsis>
<type>array</type><methodname>get_meta_tags</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>use_include_path</parameter><initializer>false</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>use_include_path</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
Öffnet <parameter>filename</parameter> und untersucht die Datei Zeile für
Modified: phpdoc/de/trunk/reference/url/functions/http-build-query.xml
===================================================================
--- phpdoc/de/trunk/reference/url/functions/http-build-query.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/url/functions/http-build-query.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 312690 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 342278 Maintainer: sammywg Status: ready -->
+
<refentry xml:id="function.http-build-query" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>http_build_query</refname>
@@ -62,8 +63,8 @@
<listitem>
<para>
<link linkend="ini.arg-separator.output">arg_separator.output</link> wird
- verwendet, um die Argumente voneinander zu trennen, es sei denn, dass
- der Parameter angegeben ist. In diesem Falle wird letzteres verwendet.
+ verwendet, um die Argumente voneinander zu trennen, kann aber durch die
+ Angabe dieses Parameters übersteuert werden.
</para>
</listitem>
</varlistentry>
@@ -144,10 +145,12 @@
<programlisting role="php">
<![CDATA[
<?php
-$data = array('foo'=>'bar',
- 'baz'=>'boom',
- 'kuh'=>'milch',
- 'php'=>'hypertext processor');
+$data = array(
+ 'foo'=>'bar',
+ 'baz'=>'boom',
+ 'kuh'=>'milch',
+ 'php'=>'hypertext processor'
+);
echo http_build_query($data) . "\n";
echo http_build_query($data, '', '&');
@@ -168,7 +171,7 @@
<programlisting role="php">
<![CDATA[
<?php
-$data = array('foo', 'bar', 'baz', 'boom', 'kuh' => 'milch', 'php' =>'hypertext processor');
+$data = array('foo', 'bar', 'baz', 'boom', 'kuh' => 'milch', 'php' => 'hypertext processor');
echo http_build_query($data) . "\n";
echo http_build_query($data, 'meineVariable_');
@@ -188,16 +191,20 @@
<programlisting role="php">
<![CDATA[
<?php
-$data = array('user'=>array('name'=>'Bob Smith',
- 'alter'=>47,
- 'geschlecht'=>'M',
- 'geb'=>'5/12/1956'),
- 'hobbies'=>array('golf', 'opera', 'poker', 'rap'),
- 'kinder'=>array('bobby'=>array('alter'=>12,
- 'geschlecht'=>'M'),
- 'sally'=>array('alter'=>8,
- 'geschlecht'=>'F')),
- 'CEO');
+$data = array(
+ 'user' => array(
+ 'name' => 'Bob Smith',
+ 'alter' => 47,
+ 'geschlecht' => 'M',
+ 'geb' => '5/12/1956'
+ ),
+ 'hobbies' => array('golf', 'opera', 'poker', 'rap'),
+ 'kinder' => array(
+ 'bobby' => array('alter' => 12,'geschlecht' => 'M'),
+ 'sally' => array('alter'=>8, 'geschlecht'=>'F')
+ ),
+ 'CEO'
+);
echo http_build_query($data, 'flags_');
?>
Modified: phpdoc/de/trunk/reference/url/functions/parse-url.xml
===================================================================
--- phpdoc/de/trunk/reference/url/functions/parse-url.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/url/functions/parse-url.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336512 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 343077 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.parse-url" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -18,6 +18,7 @@
<para>
Diese Funktion parst einen URL und gibt ein assoziatives Array zurück, das
die im URL vorhandenen Komponenten enthält.
+ Die Werte der Array-Elemente sind nicht <emphasis>nicht</emphasis> URL dekodiert.
</para>
<para>
Diese Funktion ist <emphasis role="strong">nicht</emphasis> dazu gedacht,
@@ -249,7 +250,7 @@
&reftitle.notes;
<note>
<para>
- Diese Funktion verarbeitet keine relativen URLs.
+ Diese Funktion gibt für relative URLs möglicherweise inkorrekte Ergebnisse.
</para>
</note>
<note>
@@ -269,7 +270,6 @@
<member><function>pathinfo</function></member>
<member><function>parse_str</function></member>
<member><function>http_build_query</function></member>
- <member><function>http_build_url</function></member>
<member><function>dirname</function></member>
<member><function>basename</function></member>
<member><link xlink:href="&url.rfc;3986">RFC 3986</link></member>
Modified: phpdoc/de/trunk/reference/var/functions/print-r.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/print-r.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/var/functions/print-r.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 341643 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 343899 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.print-r" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,7 +13,7 @@
<methodsynopsis>
<type>mixed</type><methodname>print_r</methodname>
<methodparam><type>mixed</type><parameter>expression</parameter></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>return</parameter><initializer>false</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>return</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
<function>print_r</function> zeigt Informationen über eine
Modified: phpdoc/de/trunk/reference/var/functions/unserialize.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/unserialize.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/var/functions/unserialize.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 342955 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 344075 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.unserialize" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -63,7 +63,7 @@
werden soll (um dem Erhalt des unvollständigen <type>object</type>
"__PHP_Incomplete_Class" vorzubeugen). Nutzen Sie Ihre &php.ini;,
<function>ini_set</function> oder &htaccess;, um
- '<literal>unserialize_callback_func</literal>' festzulegen. Jedesmal,
+ <link linkend="ini.unserialize-callback-func">unserialize_callback_func</link> festzulegen. Jedesmal,
wenn eine undefinierte Klasse instanziiert werden soll, wird diese
Funktion aufgerufen. Um dieses Feature abzuschalten, muss die
Einstellung nur ungefüllt sein.
@@ -249,7 +249,7 @@
<member><function>hash_hmac</function></member>
<member><function>serialize</function></member>
<member><link linkend="language.oop5.autoload">Autoloading von Klassen</link></member>
- <member><link linkend="unserialize-callback-func">unserialize_callback_func</link></member>
+ <member><link linkend="ini.unserialize-callback-func">unserialize_callback_func</link></member>
<member><link linkend="object.wakeup">__wakeup</link></member>
</simplelist>
</para>
Modified: phpdoc/de/trunk/reference/var/functions/unset.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/unset.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/var/functions/unset.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334592 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 343843 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.unset" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -210,6 +210,7 @@
<function>unset</function> Function verwechselt. <literal>(unset)</literal>
Casting dient nur als ein <literal>NULL</literal>-Typ-Cast, der
Vollständigkeit halber. Es ändert nicht die gecastete Variable.
+ Das (unset) Casting ist ab PHP 7.2.0 missbilligt.
</para>
<programlisting role="php">
<![CDATA[
Modified: phpdoc/de/trunk/reference/var/functions/var-export.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/var-export.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/var/functions/var-export.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337793 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 343899 Maintainer: hholzgra Status: ready -->
+
<refentry xml:id="function.var-export" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>var_export</refname>
@@ -12,7 +13,7 @@
<methodsynopsis>
<type>mixed</type><methodname>var_export</methodname>
<methodparam><type>mixed</type><parameter>expression</parameter></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>return</parameter><initializer>false</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>return</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<simpara>
<function>var_export</function> liefert strukturierte Informationen
Modified: phpdoc/de/trunk/reference/xml/functions/utf8-decode.xml
===================================================================
--- phpdoc/de/trunk/reference/xml/functions/utf8-decode.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xml/functions/utf8-decode.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340506 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 343495 Maintainer: wiesemann Status: ready -->
+
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.utf8-decode">
<refnamediv>
<refname>utf8_decode</refname>
@@ -62,6 +63,31 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>7.2.0</entry>
+ <entry>
+ Diese Funktion wurde in den Kern von PHP verschoben, so dass sie nun
+ auch ohne die XML Extension verfügbar ist.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
Modified: phpdoc/de/trunk/reference/xml/functions/utf8-encode.xml
===================================================================
--- phpdoc/de/trunk/reference/xml/functions/utf8-encode.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xml/functions/utf8-encode.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340507 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 343495 Maintainer: wiesemann Status: ready -->
+
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.utf8-encode">
<refnamediv>
<refname>utf8_encode</refname>
@@ -56,6 +57,31 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>7.2.0</entry>
+ <entry>
+ Diese Funktion wurde in den Kern von PHP verschoben, so dass sie nun
+ auch ohne die XML Extension verfügbar ist.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="seealso">
&reftitle.seealso;
<para>
Modified: phpdoc/de/trunk/reference/xmlreader/xmlreader/readinnerxml.xml
===================================================================
--- phpdoc/de/trunk/reference/xmlreader/xmlreader/readinnerxml.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xmlreader/xmlreader/readinnerxml.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 330543 Maintainer: khp Status: ready -->
+<!-- EN-Revision: 343916 Maintainer: khp Status: ready -->
<!-- $Revision$ -->
<refentry xml:id="xmlreader.readinnerxml" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
- <refname>XMLReader::readInnerXML</refname>
+ <refname>XMLReader::readInnerXml</refname>
<refpurpose>Erhalte XML des aktuellen Knotens</refpurpose>
</refnamediv>
@@ -11,7 +11,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <modifier>public</modifier> <type>string</type><methodname>XMLReader::readInnerXML</methodname>
+ <modifier>public</modifier> <type>string</type><methodname>XMLReader::readInnerXml</methodname>
<void />
</methodsynopsis>
<para>
@@ -76,7 +76,7 @@
<para>
<simplelist>
<member><function>XMLReader::readString</function></member>
- <member><function>XMLReader::readOuterXML</function></member>
+ <member><function>XMLReader::readOuterXml</function></member>
<member><function>XMLReader::expand</function></member>
</simplelist>
</para>
Modified: phpdoc/de/trunk/reference/xmlreader/xmlreader/readouterxml.xml
===================================================================
--- phpdoc/de/trunk/reference/xmlreader/xmlreader/readouterxml.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xmlreader/xmlreader/readouterxml.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 339242 Maintainer: khp Status: ready -->
+<!-- EN-Revision: 343916 Maintainer: khp Status: ready -->
<!-- $Revision$ -->
<refentry xml:id="xmlreader.readouterxml" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
- <refname>XMLReader::readOuterXML</refname>
+ <refname>XMLReader::readOuterXml</refname>
<refpurpose>Liest XML des aktuellen Knotens, inklusive den Knoten selbst</refpurpose>
</refnamediv>
@@ -11,7 +11,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <modifier>public</modifier> <type>string</type><methodname>XMLReader::readOuterXML</methodname>
+ <modifier>public</modifier> <type>string</type><methodname>XMLReader::readOuterXml</methodname>
<void />
</methodsynopsis>
<para>
@@ -77,7 +77,7 @@
<para>
<simplelist>
<member><function>XMLReader::readString</function></member>
- <member><function>XMLReader::readInnerXML</function></member>
+ <member><function>XMLReader::readInnerXml</function></member>
<member><function>XMLReader::expand</function></member>
</simplelist>
</para>
Modified: phpdoc/de/trunk/reference/xmlreader/xmlreader/readstring.xml
===================================================================
--- phpdoc/de/trunk/reference/xmlreader/xmlreader/readstring.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xmlreader/xmlreader/readstring.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 330543 Maintainer: khp Status: ready -->
+<!-- EN-Revision: 343916 Maintainer: khp Status: ready -->
<!-- $Revision$ -->
<refentry xml:id="xmlreader.readstring" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -75,8 +75,8 @@
&reftitle.seealso;
<para>
<simplelist>
- <member><function>XMLReader::readOuterXML</function></member>
- <member><function>XMLReader::readInnerXML</function></member>
+ <member><function>XMLReader::readOuterXml</function></member>
+ <member><function>XMLReader::readInnerXml</function></member>
<member><function>XMLReader::expand</function></member>
</simplelist>
</para>
Modified: phpdoc/de/trunk/reference/xsl/xsltprocessor/getsecurityprefs.xml
===================================================================
--- phpdoc/de/trunk/reference/xsl/xsltprocessor/getsecurityprefs.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xsl/xsltprocessor/getsecurityprefs.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336970 Maintainer: theseer Status: ready -->
+<!-- EN-Revision: 344018 Maintainer: theseer Status: ready -->
+
<refentry xml:id="xsltprocessor.getsecurityprefs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
- <refname>XsltProcessor::getSecurityPrefs</refname>
+ <refname>XSLTProcessor::getSecurityPrefs</refname>
<refpurpose>Liefert die Sicherheitseinstellungen</refpurpose>
</refnamediv>
@@ -10,7 +11,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <modifier>public</modifier> <type>int</type><methodname>XsltProcessor::getSecurityPrefs</methodname>
+ <modifier>public</modifier> <type>int</type><methodname>XSLTProcessor::getSecurityPrefs</methodname>
<void/>
</methodsynopsis>
<para>
Modified: phpdoc/de/trunk/reference/xsl/xsltprocessor/setsecurityprefs.xml
===================================================================
--- phpdoc/de/trunk/reference/xsl/xsltprocessor/setsecurityprefs.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xsl/xsltprocessor/setsecurityprefs.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336970 Maintainer: theseer Status: ready -->
+<!-- EN-Revision: 344018 Maintainer: theseer Status: ready -->
+
<refentry xml:id="xsltprocessor.setsecurityprefs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
- <refname>XsltProcessor::setSecurityPrefs</refname>
+ <refname>XSLTProcessor::setSecurityPrefs</refname>
<refpurpose>Setzt die Sicherheitseinstellungen</refpurpose>
</refnamediv>
@@ -10,7 +11,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <modifier>public</modifier> <type>int</type> <methodname>XsltProcessor::setSecurityPrefs</methodname>
+ <modifier>public</modifier> <type>int</type> <methodname>XSLTProcessor::setSecurityPrefs</methodname>
<methodparam><type>int</type><parameter>securityPrefs</parameter></methodparam>
</methodsynopsis>
<para>
Modified: phpdoc/de/trunk/reference/xsl/xsltprocessor/transformtoxml.xml
===================================================================
--- phpdoc/de/trunk/reference/xsl/xsltprocessor/transformtoxml.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/xsl/xsltprocessor/transformtoxml.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 335452 Maintainer: theseer Status: ready -->
+<!-- EN-Revision: 344018 Maintainer: theseer Status: ready -->
+
<refentry xml:id="xsltprocessor.transformtoxml" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
- <refname>XSLTProcessor::transformToXML</refname>
+ <refname>XSLTProcessor::transformToXml</refname>
<refpurpose>Transformierung zu einem XML-String</refpurpose>
</refnamediv>
<refsect1 role="description">
@@ -10,7 +11,7 @@
&reftitle.description;
<methodsynopsis>
<type>string</type>
- <methodname>XSLTProcessor::transformToXML</methodname>
+ <methodname>XSLTProcessor::transformToXml</methodname>
<methodparam><type>object</type><parameter>doc</parameter></methodparam>
</methodsynopsis>
<para>
Modified: phpdoc/de/trunk/reference/zlib/functions/zlib-encode.xml
===================================================================
--- phpdoc/de/trunk/reference/zlib/functions/zlib-encode.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/reference/zlib/functions/zlib-encode.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340908 Maintainer: patrickeigensatz Status: ready -->
+<!-- EN-Revision: 343898 Maintainer: patrickeigensatz Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.zlib-encode" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -14,8 +14,8 @@
<methodsynopsis>
<type>string</type><methodname>zlib_encode</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
- <methodparam><type>string</type><parameter>encoding</parameter></methodparam>
- <methodparam choice="opt"><type>string</type><parameter>level</parameter><initializer>-1</initializer></methodparam>
+ <methodparam><type>int</type><parameter>encoding</parameter></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>level</parameter><initializer>-1</initializer></methodparam>
</methodsynopsis>
<para>
Komprimiert Daten mit der gewählten Kodierung.
Modified: phpdoc/de/trunk/security/sessions.xml
===================================================================
--- phpdoc/de/trunk/security/sessions.xml 2018-04-18 15:58:44 UTC (rev 344717)
+++ phpdoc/de/trunk/security/sessions.xml 2018-04-18 16:05:23 UTC (rev 344718)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340003 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 344564 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="security.sessions" xmlns="http://docbook.org/ns/docbook">