[prev in list] [next in list] [prev in thread] [next in thread] 

List:       php-doc-cvs
Subject:    [DOC-CVS] =?utf-8?q?svn:_/phpdoc/en/trunk/_language/constants.xml_language/control-structures/includ
From:       George_Peter_Banyard <girgias () php ! net>
Date:       2019-03-24 19:38:53
Message-ID: svn-girgias-1553456333-347043-1458581331 () svn ! php ! net
[Download RAW message or body]

girgias                                  Sun, 24 Mar 2019 19:38:53 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=347043

Log:
Remove PHP 4 and 5.0.0 mentions.
This includes changelogs but also some paragraphs and notes which mention PHP 4.

Changed paths:
    U   phpdoc/en/trunk/language/constants.xml
    U   phpdoc/en/trunk/language/control-structures/include-once.xml
    U   phpdoc/en/trunk/language/oop5.xml
    U   phpdoc/en/trunk/language/predefined/variables/cookie.xml
    U   phpdoc/en/trunk/language/predefined/variables/env.xml
    U   phpdoc/en/trunk/language/predefined/variables/files.xml
    U   phpdoc/en/trunk/language/predefined/variables/get.xml
    U   phpdoc/en/trunk/language/predefined/variables/post.xml
    U   phpdoc/en/trunk/language/predefined/variables/request.xml
    U   phpdoc/en/trunk/language/predefined/variables/server.xml
    U   phpdoc/en/trunk/language/predefined/variables/session.xml
    U   phpdoc/en/trunk/language/predefined/variables/superglobals.xml
    U   phpdoc/en/trunk/language/wrappers/audio.xml
    U   phpdoc/en/trunk/language/wrappers/compression.xml
    U   phpdoc/en/trunk/language/wrappers/expect.xml
    U   phpdoc/en/trunk/language/wrappers/file.xml
    U   phpdoc/en/trunk/language/wrappers/ftp.xml
    U   phpdoc/en/trunk/language/wrappers/http.xml
    U   phpdoc/en/trunk/language/wrappers/php.xml
    U   phpdoc/en/trunk/language/wrappers/ssh2.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/copy.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/dirname.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/fgetcsv.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/fgets.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/file.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/fopen.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/rename.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/rmdir.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/tempnam.xml
    U   phpdoc/en/trunk/reference/filesystem/functions/unlink.xml
    U   phpdoc/en/trunk/reference/session/functions/session-regenerate-id.xml
    U   phpdoc/en/trunk/reference/session/functions/session-start.xml
    U   phpdoc/en/trunk/reference/stream/constants.xml
    U   phpdoc/en/trunk/reference/stream/functions/stream-set-timeout.xml


["svn-diffs-347043.txt" (text/x-diff)]

Modified: phpdoc/en/trunk/language/constants.xml
===================================================================
--- phpdoc/en/trunk/language/constants.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/constants.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -367,33 +367,6 @@
           Added <constant>__DIR__</constant> and <constant>__NAMESPACE__</constant> \
constants  </entry>
         </row>
-        <row>
-         <entry>5.0.0</entry>
-         <entry>
-          Added <constant>__METHOD__</constant> constant
-         </entry>
-        </row>
-        <row>
-         <entry>5.0.0</entry>
-         <entry>
-          Before this version values of some magic constants were always lowercased.
-          All of them are case-sensitive now (contain names as they were declared).
-         </entry>
-        </row>
-        <row>
-         <entry>4.3.0</entry>
-         <entry>
-          Added <constant>__FUNCTION__</constant> and <constant>__CLASS__</constant> \
                constants
-         </entry>
-        </row>
-        <row>
-         <entry>4.0.2</entry>
-         <entry>
-          <constant>__FILE__</constant> always contains an absolute path with \
                symlinks
-          resolved whereas in older versions it contained relative path
-          under some circumstances
-         </entry>
-        </row>
        </tbody>
       </tgroup>
      </informaltable>

Modified: phpdoc/en/trunk/language/control-structures/include-once.xml
===================================================================
--- phpdoc/en/trunk/language/control-structures/include-once.xml	2019-03-24 18:01:54 \
                UTC (rev 347042)
+++ phpdoc/en/trunk/language/control-structures/include-once.xml	2019-03-24 19:38:53 \
UTC (rev 347043) @@ -22,30 +22,6 @@
   See the <function>include</function> documentation for information about
   how this function works.
  </para>
- <para>
-  <note>
-  <para>
-   With PHP 4, <literal>_once</literal> functionality differs with case-insensitive
-   operating systems (like Windows) so for example:
-   <example>
-    <title><literal>include_once</literal> with a case insensitive OS in PHP \
                4</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-include_once "a.php"; // this will include a.php
-include_once "A.php"; // this will include a.php again! (PHP 4 only)
-?>
-]]>
-     </programlisting>
-    </example>
-   </para>
-   <para>
-    This behaviour changed in PHP 5, so for example with Windows the path is \
                normalized first so that
-    <filename>C:\PROGRA~1\A.php</filename> is realized the same as
-    <filename>C:\Program Files\a.php</filename> and the file is included just once.
-   </para>
-  </note>
- </para>
 </sect1>

 <!-- Keep this comment at the end of the file

Modified: phpdoc/en/trunk/language/oop5.xml
===================================================================
--- phpdoc/en/trunk/language/oop5.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/oop5.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -6,12 +6,8 @@
   <sect1  xml:id="oop5.intro">
    <title>Introduction</title>
    <para>
-    Starting with PHP 5, the object model was rewritten to allow for better
-    performance and more features. This was a major change from PHP 4. PHP 5
-    has a full object model.
-   </para>
-   <para>
-    Among the features in PHP 5 are the inclusions of
+    As of PHP 5, PHP includes a complete object model.
+    Some of its features are:
     <link linkend="language.oop5.visibility">visibility</link>,
     <link linkend="language.oop5.abstract">abstract</link> and
     <link linkend="language.oop5.final">final</link> classes and methods,

Modified: phpdoc/en/trunk/language/predefined/variables/cookie.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/cookie.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/cookie.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -24,32 +24,6 @@

  </refsect1>

-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_COOKIE</varname> that deprecated
-        <varname>$HTTP_COOKIE_VARS</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/language/predefined/variables/env.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/env.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/env.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -39,32 +39,6 @@

  </refsect1>

-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_ENV</varname> that deprecated
-        <varname>$HTTP_ENV_VARS</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/language/predefined/variables/files.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/files.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/files.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -26,32 +26,6 @@

  </refsect1>

-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_FILES</varname> that deprecated
-        <varname>$HTTP_POST_FILES</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="notes">
   &reftitle.notes;
   &note.is-superglobal;

Modified: phpdoc/en/trunk/language/predefined/variables/get.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/get.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/get.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -25,32 +25,6 @@

  </refsect1>

-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_GET</varname> that deprecated
-        <varname>$HTTP_GET_VARS</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/language/predefined/variables/post.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/post.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/post.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -25,32 +25,6 @@

  </refsect1>

-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_POST</varname> that deprecated
-        <varname>$HTTP_POST_VARS</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/language/predefined/variables/request.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/request.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/request.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -37,19 +37,6 @@
         This directive affects the contents of <varname>$_REQUEST</varname>.
        </entry>
       </row>
-      <row>
-       <entry>4.3.0</entry>
-       <entry>
-        <varname>$_FILES</varname> information
-        was removed from <varname>$_REQUEST</varname>.
-       </entry>
-      </row>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_REQUEST</varname>.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/language/predefined/variables/server.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/server.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/server.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -570,13 +570,6 @@
         deprecated.
        </entry>
       </row>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_SERVER</varname> that deprecated
-        <varname>$HTTP_SERVER_VARS</varname>.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/language/predefined/variables/session.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/session.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/session.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -25,31 +25,6 @@
   </simpara>
  </refsect1>

- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.1.0</entry>
-       <entry>
-        Introduced <varname>$_SESSION</varname> that deprecated
-        <varname>$HTTP_SESSION_VARS</varname>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="notes">
   &reftitle.notes;
   &note.is-superglobal;

Modified: phpdoc/en/trunk/language/predefined/variables/superglobals.xml
===================================================================
--- phpdoc/en/trunk/language/predefined/variables/superglobals.xml	2019-03-24 \
                18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/predefined/variables/superglobals.xml	2019-03-24 \
19:38:53 UTC (rev 347043) @@ -31,30 +31,6 @@
   </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>4.1.0</entry>
-       <entry>
-        Superglobals were introduced to PHP.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="notes">
   &reftitle.notes;
   <note>

Modified: phpdoc/en/trunk/language/wrappers/audio.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/audio.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/audio.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -24,7 +24,7 @@
    <parameter>bitrate_nominal</parameter>, and \
<parameter>bitrate_window</parameter>.  </para>

-  <simpara><filename>ogg://</filename> PHP 4.3.0 and up (PECL) </simpara>
+  <simpara><filename>ogg://</filename> (PECL)</simpara>
   <note>
    <title>This wrapper is not enabled by default</title>
    <simpara>

Modified: phpdoc/en/trunk/language/wrappers/compression.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/compression.xml	2019-03-24 18:01:54 UTC (rev \
                347042)
+++ phpdoc/en/trunk/language/wrappers/compression.xml	2019-03-24 19:38:53 UTC (rev \
347043) @@ -16,7 +16,7 @@
   <simpara>
    <filename>zlib:</filename> works like <function>gzopen</function>, except that \
the  stream can be used with <function>fread</function> and the other
-   filesystem functions.  This is deprecated as of PHP 4.3.0 due
+   filesystem functions.  This is deprecated due
    to ambiguities with filenames containing ':' characters; use
    <filename>compress.zlib://</filename> instead.
   </simpara>

Modified: phpdoc/en/trunk/language/wrappers/expect.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/expect.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/expect.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -21,7 +21,7 @@
     available from <link xlink:href="&url.pecl;">PECL</link>.
    </simpara>
   </note>
-  <simpara><filename>expect://</filename> PHP 4.3.0 and up (PECL) </simpara>
+  <simpara><filename>expect://</filename> (PECL)</simpara>
  </refsect1><!-- }}} -->

  <refsect1 role="usage"> <!-- {{{ -->

Modified: phpdoc/en/trunk/language/wrappers/file.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/file.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/file.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -94,30 +94,6 @@
   </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>5.0.0</entry>
-       <entry>
-        Added <literal>file://</literal>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1><!-- }}} -->
-
 </refentry>

 <!-- Keep this comment at the end of the file

Modified: phpdoc/en/trunk/language/wrappers/ftp.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/ftp.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/ftp.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -47,12 +47,11 @@
   <para>
    <table>
     <title>Wrapper Summary</title>
-    <tgroup cols="3">
+    <tgroup cols="2">
      <thead>
       <row>
        <entry>Attribute</entry>
-       <entry>PHP 4</entry>
-       <entry>PHP 5</entry>
+       <entry>Supported</entry>
       </row>
      </thead>
      <tbody>
@@ -59,56 +58,46 @@
       <row>
        <entry>Restricted by <link \
linkend="ini.allow-url-fopen">allow_url_fopen</link></entry>  <entry>Yes</entry>
-       <entry>Yes</entry>
       </row>
       <row>
        <entry>Allows Reading</entry>
        <entry>Yes</entry>
-       <entry>Yes</entry>
       </row>
       <row>
        <entry>Allows Writing</entry>
-       <entry>Yes (new files only)</entry>
        <entry>Yes (new files/existing files with \
<parameter>overwrite</parameter>)</entry>  </row>
       <row>
        <entry>Allows Appending</entry>
-       <entry>No</entry>
        <entry>Yes</entry>
       </row>
       <row>
        <entry>Allows Simultaneous Reading and Writing</entry>
        <entry>No</entry>
-       <entry>No</entry>
       </row>
       <row>
        <entry>Supports <function>stat</function></entry>
-       <entry>No</entry>
        <entry>
-        As of PHP 5.0.0: <function>filesize</function>,
-        <function>filetype</function>, <function>file_exists</function>,
-        <function>is_file</function>, and <function>is_dir</function> elements only.
+        <function>filesize</function>, <function>filetype</function>,
+        <function>file_exists</function>, <function>is_file</function>,
+        and <function>is_dir</function> elements only.
         As of PHP 5.1.0: <function>filemtime</function>.
        </entry>
       </row>
       <row>
        <entry>Supports <function>unlink</function></entry>
-       <entry>No</entry>
        <entry>Yes</entry>
       </row>
       <row>
        <entry>Supports <function>rename</function></entry>
-       <entry>No</entry>
        <entry>Yes</entry>
       </row>
       <row>
        <entry>Supports <function>mkdir</function></entry>
-       <entry>No</entry>
        <entry>Yes</entry>
       </row>
       <row>
        <entry>Supports <function>rmdir</function></entry>
-       <entry>No</entry>
        <entry>Yes</entry>
       </row>
      </tbody>
@@ -117,30 +106,6 @@
   </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>4.3.0</entry>
-       <entry>
-        Added <literal>ftps://</literal>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1><!-- }}} -->
-
  <refsect1 role="notes"><!-- {{{ -->
   &reftitle.notes;
   <note>
@@ -156,9 +121,7 @@
   <note>
    <title>Appending</title>
    <simpara>
-    As of PHP 5.0.0 files may be appended via the
-    <literal>ftp://</literal> URL wrapper.  In prior versions, attempting
-    to append to a file via <literal>ftp://</literal> will result in failure.
+    Files may be appended via the <literal>ftp://</literal> URL wrapper.
    </simpara>
   </note>
  </refsect1><!-- }}} -->

Modified: phpdoc/en/trunk/language/wrappers/http.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/http.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/http.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -107,42 +107,6 @@
   </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>4.3.7</entry>
-       <entry>
-        Detect buggy IIS servers to avoid <literal>"SSL: Fatal Protocol \
                Error"</literal> errors.
-       </entry>
-      </row>
-      <row>
-       <entry>4.3.0</entry>
-       <entry>
-        Added <literal>https://</literal>.
-       </entry>
-      </row>
-      <row>
-       <entry>4.0.5</entry>
-       <entry>
-        Added support for redirects.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1><!-- }}} -->
-
  <refsect1 role="examples"><!-- {{{ -->
   &reftitle.examples;
   <example xml:id="wrappers.http.example.basic"><!-- {{{ -->

Modified: phpdoc/en/trunk/language/wrappers/php.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/php.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/php.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -312,12 +312,6 @@
         were added.
        </entry>
       </row>
-      <row>
-       <entry>5.0.0</entry>
-       <entry>
-        <filename>php://filter</filename> was added.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/language/wrappers/ssh2.xml
===================================================================
--- phpdoc/en/trunk/language/wrappers/ssh2.xml	2019-03-24 18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/language/wrappers/ssh2.xml	2019-03-24 19:38:53 UTC (rev 347043)
@@ -15,7 +15,7 @@
    <filename>ssh2.tunnel://</filename>
    <filename>ssh2.sftp://</filename>
    <filename>ssh2.scp://</filename>
-   PHP 4.3.0 and up (PECL)
+   (PECL)
   </para>

   <note>

Modified: phpdoc/en/trunk/reference/filesystem/functions/copy.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/copy.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/copy.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -95,14 +95,6 @@
         Added context support.
        </entry>
       </row>
-      <row>
-       <entry>4.3.0</entry>
-       <entry>
-        Both <parameter>source</parameter> and <parameter>dest</parameter>
-        may now be URLs if the "fopen wrappers" have been enabled.
-        See <function>fopen</function> for more details.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/filesystem/functions/dirname.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/dirname.xml	2019-03-24 18:01:54 \
                UTC (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/dirname.xml	2019-03-24 19:38:53 \
UTC (rev 347043) @@ -95,12 +95,6 @@
         Added the optional <parameter>levels</parameter> parameter.
        </entry>
       </row>
-      <row>
-       <entry>5.0.0</entry>
-       <entry>
-        <function>dirname</function> is now binary safe
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/filesystem/functions/fgetcsv.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/fgetcsv.xml	2019-03-24 18:01:54 \
                UTC (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/fgetcsv.xml	2019-03-24 19:38:53 \
UTC (rev 347043) @@ -159,12 +159,6 @@
         -->
        </entry>
       </row>
-      <row>
-       <entry>4.3.5</entry>
-       <entry>
-        <function>fgetcsv</function> is now binary safe
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/filesystem/functions/fgets.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/fgets.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/fgets.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -63,30 +63,6 @@
   </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>4.3.0</entry>
-       <entry>
-        <function>fgets</function> is now binary safe
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/reference/filesystem/functions/file.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/file.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/file.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -119,30 +119,6 @@
    does not exist.
   </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>4.3.0</entry>
-       <entry>
-        <function>file</function> became binary safe
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>

  <refsect1 role="examples">
   &reftitle.examples;

Modified: phpdoc/en/trunk/reference/filesystem/functions/fopen.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/fopen.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/fopen.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -315,16 +315,6 @@
         added
        </entry>
       </row>
-      <row>
-       <entry>4.3.2</entry>
-       <entry>
-        As of PHP 4.3.2, the default mode is set to binary for all platforms
-        that distinguish between binary and text mode.  If you are having
-        problems with your scripts after upgrading, try using the
-        <literal>'t'</literal> flag as a workaround until you have made your
-        script more portable as mentioned before
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/filesystem/functions/rename.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/rename.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/rename.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -87,26 +87,6 @@
         Windows.
        </entry>
       </row>
-      <row>
-       <entry>5.0.0</entry>
-       <entry>
-        <function>rename</function> can now also be used with
-        <emphasis>some</emphasis> URL wrappers.  Refer to <xref
-        linkend="wrappers"/> for a listing of which wrappers
-        support <function>rename</function>.
-       </entry>
-      </row>
-      <row>
-       <entry>4.3.3</entry>
-       <entry>
-        <function>rename</function> may now be able to rename files across
-        partitions on *nix based systems, provided the appropriate permissions
-        are held. Warnings may be generated if the destination filesystem
-        doesn't permit <literal>chown()</literal> or
-        <literal>chmod()</literal> system calls to be made on files —
-        for example, if the destination filesystem is a FAT filesystem.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/filesystem/functions/rmdir.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/rmdir.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/rmdir.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -49,33 +49,6 @@
   </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>5.0.0</entry>
-       <entry>
-        As of PHP 5.0.0 <function>rmdir</function> can also be used with
-        <emphasis>some</emphasis> URL wrappers.  Refer to <xref
-        linkend="wrappers"/> for a listing of which wrappers support
-        <function>rmdir</function>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/reference/filesystem/functions/tempnam.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/tempnam.xml	2019-03-24 18:01:54 \
                UTC (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/tempnam.xml	2019-03-24 19:38:53 \
UTC (rev 347043) @@ -58,35 +58,6 @@
   </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>4.0.3</entry>
-       <entry>
-        This function's behavior changed in 4.0.3. The temporary file is also
-        created to avoid a race condition where the file might appear in the
-        filesystem between the time the string was generated and before
-        the script gets around to creating the file. Note, that you need
-        to remove the file in case you need it no more, it is not done
-        automatically.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/reference/filesystem/functions/unlink.xml
===================================================================
--- phpdoc/en/trunk/reference/filesystem/functions/unlink.xml	2019-03-24 18:01:54 UTC \
                (rev 347042)
+++ phpdoc/en/trunk/reference/filesystem/functions/unlink.xml	2019-03-24 19:38:53 UTC \
(rev 347043) @@ -49,33 +49,6 @@
   </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>5.0.0</entry>
-       <entry>
-        As of PHP 5.0.0 <function>unlink</function> can also be used with
-        <emphasis>some</emphasis> URL wrappers. Refer to <xref
-        linkend="wrappers"/> for a listing of which wrappers support
-        <function>unlink</function>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/en/trunk/reference/session/functions/session-regenerate-id.xml
===================================================================
--- phpdoc/en/trunk/reference/session/functions/session-regenerate-id.xml	2019-03-24 \
                18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/reference/session/functions/session-regenerate-id.xml	2019-03-24 \
19:38:53 UTC (rev 347043) @@ -92,14 +92,6 @@
         Added the <parameter>delete_old_session</parameter> parameter.
        </entry>
       </row>
-      <row>
-       <entry>4.3.3</entry>
-       <entry>
-        Since then, if session cookies are enabled, use of
-        <function>session_regenerate_id</function> will also submit a new
-        session cookie with the new session id.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>

Modified: phpdoc/en/trunk/reference/session/functions/session-start.xml
===================================================================
--- phpdoc/en/trunk/reference/session/functions/session-start.xml	2019-03-24 18:01:54 \
                UTC (rev 347042)
+++ phpdoc/en/trunk/reference/session/functions/session-start.xml	2019-03-24 19:38:53 \
UTC (rev 347043) @@ -109,15 +109,6 @@
         Previously &true; was returned.
        </entry>
       </row>
-      <row>
-       <entry>4.3.3</entry>
-       <entry>
-        As of PHP 4.3.3, calling <function>session_start</function>
-        after the session was previously started will result in an
-        error of level <constant>E_NOTICE</constant>.  Also, the
-        second session start will simply be ignored.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>
@@ -227,7 +218,7 @@
   <note>
    <para>
     To use cookie-based sessions, <function>session_start</function>
-    must be called before outputting anything to the browser.
+    must be called before outputing anything to the browser.
    </para>
   </note>
   <note>

Modified: phpdoc/en/trunk/reference/stream/constants.xml
===================================================================
--- phpdoc/en/trunk/reference/stream/constants.xml	2019-03-24 18:01:54 UTC (rev \
                347042)
+++ phpdoc/en/trunk/reference/stream/constants.xml	2019-03-24 19:38:53 UTC (rev \
347043) @@ -14,7 +14,7 @@
     </thead>
     <tbody>
      <row xml:id="constant.stream-filter-read">
-      <entry><constant>STREAM_FILTER_READ</constant> *</entry>
+      <entry><constant>STREAM_FILTER_READ</constant></entry>
       <entry>
        Used with <function>stream_filter_append</function> and
        <function>stream_filter_prepend</function> to indicate
@@ -23,7 +23,7 @@
       </entry>
      </row>
      <row xml:id="constant.stream-filter-write">
-      <entry><constant>STREAM_FILTER_WRITE</constant> *</entry>
+      <entry><constant>STREAM_FILTER_WRITE</constant></entry>
       <entry>
        Used with <function>stream_filter_append</function> and
        <function>stream_filter_prepend</function> to indicate
@@ -32,7 +32,7 @@
       </entry>
      </row>
      <row xml:id="constant.stream-filter-all">
-      <entry><constant>STREAM_FILTER_ALL</constant> *</entry>
+      <entry><constant>STREAM_FILTER_ALL</constant></entry>
       <entry>
        This constant is equivalent to
        <code>STREAM_FILTER_READ | STREAM_FILTER_WRITE</code>
@@ -39,13 +39,13 @@
       </entry>
      </row>
      <row xml:id="constant.psfs-pass-on">
-      <entry><constant>PSFS_PASS_ON</constant> *</entry>
+      <entry><constant>PSFS_PASS_ON</constant></entry>
       <entry><literal>Return Code</literal> indicating that the
        userspace filter returned buckets in <parameter>$out</parameter>.
       </entry>
      </row>
      <row xml:id="constant.psfs-feed-me">
-      <entry><constant>PSFS_FEED_ME</constant> *</entry>
+      <entry><constant>PSFS_FEED_ME</constant></entry>
       <entry><literal>Return Code</literal> indicating that the
        userspace filter did not return buckets in <parameter>$out</parameter>
        (i.e. No data available).
@@ -52,7 +52,7 @@
       </entry>
      </row>
      <row xml:id="constant.psfs-err-fatal">
-      <entry><constant>PSFS_ERR_FATAL</constant> *</entry>
+      <entry><constant>PSFS_ERR_FATAL</constant></entry>
       <entry><literal>Return Code</literal> indicating that the
        userspace filter encountered an unrecoverable error
        (i.e. Invalid data received).
@@ -85,7 +85,7 @@
       </entry>
      </row>
      <row xml:id="constant.stream-client-async-connect">
-      <entry><constant>STREAM_CLIENT_ASYNC_CONNECT</constant> *</entry>
+      <entry><constant>STREAM_CLIENT_ASYNC_CONNECT</constant></entry>
       <entry>Open client socket asynchronously. This option must be used
        together with the <constant>STREAM_CLIENT_CONNECT</constant> flag.
        Used with <function>stream_socket_client</function>.
@@ -92,25 +92,25 @@
       </entry>
      </row>
      <row xml:id="constant.stream-client-connect">
-      <entry><constant>STREAM_CLIENT_CONNECT</constant> *</entry>
+      <entry><constant>STREAM_CLIENT_CONNECT</constant></entry>
       <entry>Open client socket connection. Client sockets should always
        include this flag. Used with <function>stream_socket_client</function>.
       </entry>
      </row>
      <row xml:id="constant.stream-client-persistent">
-      <entry><constant>STREAM_CLIENT_PERSISTENT</constant> *</entry>
+      <entry><constant>STREAM_CLIENT_PERSISTENT</constant></entry>
       <entry>Client socket opened with <function>stream_socket_client</function>
        should remain persistent between page loads.
       </entry>
      </row>
      <row xml:id="constant.stream-server-bind">
-      <entry><constant>STREAM_SERVER_BIND</constant> *</entry>
+      <entry><constant>STREAM_SERVER_BIND</constant></entry>
       <entry>Tells a stream created with <function>stream_socket_server</function>
        to bind to the specified target.  Server sockets should always include this \
flag.  </entry>
      </row>
      <row xml:id="constant.stream-server-listen">
-      <entry><constant>STREAM_SERVER_LISTEN</constant> *</entry>
+      <entry><constant>STREAM_SERVER_LISTEN</constant></entry>
       <entry>Tells a stream created with <function>stream_socket_server</function>
        and bound using the <constant>STREAM_SERVER_BIND</constant> flag to start
        listening on the socket. Connection-orientated transports (such as TCP)
@@ -119,7 +119,7 @@
       </entry>
      </row>
      <row xml:id="constant.stream-notify-resolve">
-      <entry><constant>STREAM_NOTIFY_RESOLVE</constant> *</entry>
+      <entry><constant>STREAM_NOTIFY_RESOLVE</constant></entry>
       <entry>
        A remote address required for this stream has been resolved, or the \
                resolution
        failed.  See <parameter>severity</parameter> for an indication of which \
happened. @@ -169,7 +169,7 @@
       </entry>
      </row>
      <row xml:id="constant.stream-notify-completed">
-      <entry><constant>STREAM_NOTIFY_COMPLETED</constant> *</entry>
+      <entry><constant>STREAM_NOTIFY_COMPLETED</constant></entry>
       <entry>
        There is no more data available on the stream.
       </entry>
@@ -365,12 +365,6 @@
  </para>
  <note>
   <simpara>
-   The constants marked with <literal>*</literal> are just available since
-   PHP 5.0.0.
-  </simpara>
- </note>
- <note>
-  <simpara>
    The constants marked with <literal>+</literal> are available since PHP
    5.1.0 and are meant to be used with
    <function>stream_socket_pair</function>. Please note that some of these

Modified: phpdoc/en/trunk/reference/stream/functions/stream-set-timeout.xml
===================================================================
--- phpdoc/en/trunk/reference/stream/functions/stream-set-timeout.xml	2019-03-24 \
                18:01:54 UTC (rev 347042)
+++ phpdoc/en/trunk/reference/stream/functions/stream-set-timeout.xml	2019-03-24 \
19:38:53 UTC (rev 347043) @@ -64,33 +64,6 @@
    &return.success;
   </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>4.3.0</entry>
-       <entry>
-        As of PHP 4.3, this function can (potentially) work on any kind of
-        stream.  In PHP 4.3, socket based streams are still the only kind
-        supported in the PHP core, although streams from other extensions
-        may support this function.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>

  <refsect1 role="examples">
   &reftitle.examples;



-- 
PHP Documentation Commits Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic