WWhat is the functionality of md5 function in PHP?
Answer Posted / dn singh
With the md5 function you can encrypt your text with 32
character hexadecimal string.
For Ex.
$str = 'apple';
echo md5($str);
this prints '1f3870be274f6c49b3e31a0c6728957f'
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
How to invoke a user function?
How is it possible to remove escape characters from a string?
What is the difference between get and post in php?
What are the __construct() and __destruct() methods in a php class?
Is not null in php?
Is empty in php?
How you can update memcached when you make changes to php?
What is the difference between characters 34 and x34?
Which function parses an English textual date or time into Unix timestamp in PHP.
What is a composer?
What is the difference between echo, print and printf()?
What is the difference between print() and echo()?
How can you pass a variable by reference?
How check field is empty or not in php?
What is the difference between substr() and strstr()?