[PHP-DOC] cvs: phpdoc /en/functions strings.xml From: Daniel Beckham (danbeck <email protected>)
Date: 08/09/00

danbeck Wed Aug 9 06:40:22 2000 EDT

  Modified files:
    /phpdoc/en/functions strings.xml
  Log:
  added a "See Also" note to the crypt function and moved the new crc32 function def into an alphabetical order
  
Index: phpdoc/en/functions/strings.xml
diff -u phpdoc/en/functions/strings.xml:1.36 phpdoc/en/functions/strings.xml:1.37
--- phpdoc/en/functions/strings.xml:1.36 Wed Aug 9 03:50:56 2000
+++ phpdoc/en/functions/strings.xml Wed Aug 9 06:40:21 2000
@@ -336,6 +336,30 @@
     </note>
    </refsect1>
   </refentry>
+
+ <refentry id="function.crc32">
+ <refnamediv>
+ <refname>crc32</refname>
+ <refpurpose>Calculates the crc32 polynomial of a string</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcprototype>
+ <funcdef>int <function>crc32</function></funcdef>
+ <paramdef>string <parameter>str</parameter></paramdef>
+ </funcprototype>
+ </funcsynopsis>
+ <para>
+ Generates the cyclic redundancy checksum polynomial of 32-bit lengths of
+ the <parameter>str</parameter>. This is usually used to validate the
+ integrity of data being trasmited.
+ </para>
+ <para>
+ See also: <function>md5</function>
+ </para>
+ </refsect1>
+ </refentry>
  
   <refentry id="function.crypt">
    <refnamediv>
@@ -415,6 +439,9 @@
      There is no decrypt function, since <function>crypt</function>
      uses a one-way algorithm.
     </simpara>
+ <simpara>
+ See also: <function>md5</function>.
+ </simpara>
    </refsect1>
   </refentry>
 
@@ -921,31 +948,6 @@
     </para>
    </refsect1>
   </refentry>
-
- <refentry id="function.crc32">
- <refnamediv>
- <refname>crc32</refname>
- <refpurpose>Calculates the crc32 polynomial of a string</refpurpose>
- </refnamediv>
- <refsect1>
- <title>Description</title>
- <funcsynopsis>
- <funcprototype>
- <funcdef>int <function>crc32</function></funcdef>
- <paramdef>string <parameter>str</parameter></paramdef>
- </funcprototype>
- </funcsynopsis>
- <para>
- Generates the cyclic redundancy checksum polynomial of 32-bit lengths of
- the <parameter>str</parameter>. This is usually used to validate the
- integrity of data being trasmited.
- </para>
- <para>
- See also: <function>md5</function>
- </para>
- </refsect1>
- </refentry>
-
 
   <refentry id="function.md5">
    <refnamediv>