WWhat is the functionality of md5 function in PHP?

Answers were Sorted based on User's Feedback



WWhat is the functionality of md5 function in PHP?..

Answer / lakum

md5 means Messagedigest5 is an algorithem
converst the plain text to hipher text
mainly used in store the user passwords in database

Is This Answer Correct ?    16 Yes 0 No

WWhat is the functionality of md5 function in PHP?..

Answer / 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

WWhat is the functionality of md5 function in PHP?..

Answer / vivek

Calculates the MD5 hash of str using the ? RSA Data
Security, Inc. MD5 Message-Digest Algorithm, and returns
that hash. The hash is a 32-character hexadecimal number. If
the optional raw_output is set to TRUE, then the md5 digest
is instead returned in raw binary format with a length of 16.

The optional raw_output parameter was added in PHP 5.0.0 and
defaults to FALSE

Is This Answer Correct ?    5 Yes 1 No

WWhat is the functionality of md5 function in PHP?..

Answer / diwakar tiwari

md5 is one encryption algorithm. for using this function we
can store password in database. After using this function ,
we can not decrypt password. it convert plain text into 32-
character hexadecimal number.

Is This Answer Correct ?    5 Yes 2 No

WWhat is the functionality of md5 function in PHP?..

Answer / dhirendra yadav

md5-messagedigest5..it is encryption algorithm.

Is This Answer Correct ?    4 Yes 1 No

WWhat is the functionality of md5 function in PHP?..

Answer / hirak

calculate md5 hash of a string.
hash is 32-character hexadecimal string.

Is This Answer Correct ?    3 Yes 1 No

WWhat is the functionality of md5 function in PHP?..

Answer / renjini v nair

IT CONVERTS PLAIN TEXT INTO 32 BIT

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More PHP Interview Questions

Explain me what is the meaning of a persistent cookie?

0 Answers  


If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?

0 Answers  


explain php variable length argument function.

0 Answers  


What is csrf token and why it is required?

0 Answers  


How to Calculate Internal links & External Link in Website.(For Example YAHOO WEBSITE)

1 Answers  


When to use get and post request?

0 Answers  


Is PHP runs on different platforms (Windows, Linux, Unix, etc.)?

0 Answers  


What are php data types?

0 Answers  


What does the unlink() function means?

0 Answers  


What is the purpose of destructor ?

2 Answers  


What are some new features introduced in php7?

0 Answers  


When to use inquire vs enquire?

0 Answers  


Categories