PHP md5 is an inbuilt function in PHP. It returns the MD5 Hash of the string after hashing it with the RSA Data Security, Inc. MD5 Message-Digest Algorithm. Hashing a string is very important to store critical data in a database like for storing user’s passwords. In this article, we will discuss the PHP md5 Function. Also, we will discuss a couple of examples of using it.
WARNING: It is not recommended to use this function to secure passwords, due to the fast nature of this hashing algorithm. See the Password Hashing FAQ for details and best practices.
https://php.net/manual/en/function.md5.php
Syntax
string md5 ($string, $getRawOutput)
Parameters
The function expects two parameters. However, only one parameter is mandatory while the other is optional.
- $string: The string which needs to be hashed is the first parameter. Also, it is a mandatory parameter.
- $getRawOutput: The second parameter is a boolean value with default as false. By default the function returns a 32 character hexadecimal sequence. However, on passing true to the function, it returns a raw binary string of length 16.
Return Value
The PHP md5 Function returns string after hashing it using the RSA Data Security, Inc. MD5 Message-Digest Algorithm. By default, the function returns the string as a 32 character hexadecimal sequence. It can also return a string raw binary string of 16 characters.

Examples
Let’s discuss a few examples of using the function.
Example 1: 32 Character Hexadecimal Character Sequence
For instance, consider an example of the function returning a 32 character hexadecimal character sequence.
<?php $string = 'Concatly'; $hashedString = md5($string); echo $hashedString; ?>
In the above example, the function returns the md5 hash of the string as follows:
OUTPUT: 17ea06a7183ebe0415f780e70013bcc4
Example 2: 16 Character Raw Binary
Also, on passing the second parameter as true, the function will return a 16 character raw binary string.
<?php $string = 'Concatly'; $hashedString = md5($string, true); echo $hashedString; ?>
OUTPUT: ��>������
Uses of PHP md5 Function
The authentication system is one of the most crucial component of a website. It is very important to remove vulnerabilities which an attacker may exploit. One such vulnerability is storing the user’s password in plain text form. If an unauthorised person gains access to the database, the whole system will get compromised.
Password hashing is a method in which the user’s password is hashed to a fixed length and stored in the database in an encrypted form. Even if someone gets to know the hashed password, he cannot compromise the whole system. PHP md5 is one of the function which is helpful for the same.
Conclusion
In conclusion, we discussed the PHP md5 function. You can read more about it on the Official PHP Documentation. Additionally, you can read about more PHP String Functions on Concatly.

Vishesh is currently working as an Intermediate Software Engineer with Orion Health, New Zealand. He graduated with a Masters in Information Technology from the University of Auckland in 2021. With more than 4 years of work experience, his expertise includes Java, Python, Machine Learning, PHP, Databases, Design and Architecture.