2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2005-02-13 04:56:55 +00:00
|
|
|
<!-- $Revision: 1.7 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.md5-file">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>md5_file</refname>
|
2005-02-13 04:56:55 +00:00
|
|
|
<refpurpose>Calculates the md5 hash of a given file</refpurpose>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>md5_file</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
|
2003-02-20 10:54:32 +00:00
|
|
|
<methodparam choice='opt'><type>bool</type><parameter>raw_output</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2005-02-13 04:56:55 +00:00
|
|
|
Calculates the MD5 hash of the file specified by the
|
|
|
|
<parameter>filename</parameter> parameter using the
|
2003-05-07 21:31:31 +00:00
|
|
|
<ulink url="&url.rfc;1321">RSA Data Security, Inc.
|
2002-04-15 00:12:54 +00:00
|
|
|
MD5 Message-Digest Algorithm</ulink>, and returns that hash.
|
2003-02-20 10:54:32 +00:00
|
|
|
The hash is a 32-character hexadecimal number. If the optional
|
|
|
|
<parameter>raw_output</parameter> is set to &true;, then the md5 digest
|
|
|
|
is instead returned in raw binary format with a length of 16.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2003-02-20 10:54:32 +00:00
|
|
|
<note>
|
|
|
|
<simpara>
|
|
|
|
The optional <parameter>raw_output</parameter> parameter was added in
|
|
|
|
PHP 5.0.0 and defaults to &false;
|
|
|
|
</simpara>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
This function has the same purpose of the command line utility
|
|
|
|
md5sum.
|
|
|
|
</para>
|
|
|
|
<para>
|
2004-05-21 23:05:20 +00:00
|
|
|
See also <function>md5</function>,
|
|
|
|
<function>crc32</function>, and
|
|
|
|
<function>sha1_file</function>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|