mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
added a "See Also" note to the crypt function and moved the new crc32 function def into an alphabetical order
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@29940 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
45dc4e75f3
commit
2f45f8f85c
1 changed files with 27 additions and 25 deletions
|
@ -336,6 +336,30 @@ $new_string = chunk_split (base64_encode($data));
|
|||
</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 @@ $new_string = chunk_split (base64_encode($data));
|
|||
There is no decrypt function, since <function>crypt</function>
|
||||
uses a one-way algorithm.
|
||||
</simpara>
|
||||
<simpara>
|
||||
See also: <function>md5</function>.
|
||||
</simpara>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
@ -922,31 +949,6 @@ $colon_separated = implode (":", $array);
|
|||
</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>
|
||||
<refname>md5</refname>
|
||||
|
|
Loading…
Reference in a new issue