From 2f45f8f85c7b93a88ace0c8f08ea6aed65052545 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Wed, 9 Aug 2000 13:40:21 +0000 Subject: [PATCH] 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 --- functions/strings.xml | 52 ++++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 759de145ca..e2853b77b0 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -336,6 +336,30 @@ $new_string = chunk_split (base64_encode($data)); + + + + crc32 + Calculates the crc32 polynomial of a string + + + Description + + + int crc32 + string str + + + + Generates the cyclic redundancy checksum polynomial of 32-bit lengths of + the str. This is usually used to validate the + integrity of data being trasmited. + + + See also: md5 + + + @@ -415,6 +439,9 @@ $new_string = chunk_split (base64_encode($data)); There is no decrypt function, since crypt uses a one-way algorithm. + + See also: md5. + @@ -922,31 +949,6 @@ $colon_separated = implode (":", $array); - - - crc32 - Calculates the crc32 polynomial of a string - - - Description - - - int crc32 - string str - - - - Generates the cyclic redundancy checksum polynomial of 32-bit lengths of - the str. This is usually used to validate the - integrity of data being trasmited. - - - See also: md5 - - - - - md5