PHP MD5()

WBOY
發布: 2024-08-29 12:52:57
原創
863 人瀏覽過

PHP程式語言的MD5()函數會產生字串的雜湊值,就像編碼過程一樣。 MD5() 函數僅適用於 PHP 4、5、7 版本,但對於其他 PHP 版本,雜湊編碼器「md5()」可能有效,也可能大部分無效。大多數情況下,不建議使用 md5() 函數來安全地保護密碼,因為該函數借助其內建雜湊演算法進行快速編碼。它只接受兩個參數。在這兩者中,只有一項始終是強制性的。

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

文法:

String md5 ($string, $getRawOutput)
登入後複製

參數簡單說明:

PHP 程式語言的 MD5() 函數最多接受兩個參數。它們是:$string參數和$getRawOutput參數。

  • $string: $string 參數將幫助我們期望字串被散列。
  • $getRawOutput: $getRawOutput 參數將幫助我們期望一個布林值。對於 TRUE 結果,函數將以原始二進位格式傳回長度為 16 的 HASH。

傳回類型:PHP 的md5() 函數將傳回雜湊字串(它可以是長度為32 的小寫十六進位格式字元序列(32 個字元的十六進位數字)或原始二進位檔案長度為16) 的形式。

MD5() 函數在 PHP 中如何運作?

PHP 程式語言的 MD5() 函數目前適用於 PHP 4、PHP 5 和 PHP 7 版本。除了這些版本之外,md5() 函數在大多數情況下可能不起作用。它是一個內建函數,透過使用 md5() 函數,我們在 PHP 程式語言內部啟動 HASHING 演算法。透過後端雜湊演算法,可以根據需要完成特定數值/字串值/任何其他值的雜湊轉換。這在編碼過程中非常有幫助。 MD5() 函數值將始終採用 32 位元二進位格式,除非在 md5() 函數內部使用第二個參數。此時 md5() 值將是 16 位元二進位格式。

實作 PHP md5() 的範例

以下是範例:

範例#1

在下面的範例中,使用字串值「apples」建立變數「$str1」。然後使用 print 函數列印一些字串文字。之後,建立「$a1」變數並將其指派給 md5() 函數以及 md5() 函數內部的「$str1」變數。然後使用 echo 函數透過列印“$a1”變數值來列印更改的雜湊結果。
用於換行和


在下面提到的所有 PHP 程式碼中用於水平線。 IF 條件是透過傳遞一些哈希結果來使用。與原始字串的雜湊結果相比,雜湊結果為 false。因此,ELSE 條件結果將在 ECHO 函數的幫助下列印出來。

代碼:

<?php
$str1 = 'apples';
print "This is the value of HASH of apples :: ";
$a1 = md5($str1);
echo "$a1 <br>";
print "<hr>";
if (md5($str1) === '1f3870be274f6c49b3e31a0c6728957f') {
echo "If the value of apples is :: 1f3870be274f6c49b3e31a0c6728957f then it will print :: ";
echo "<br>Your condition is TRUE so";
echo "<br> Would you like a green or red apple?<br><hr>";
}
else{
echo "<br> Your input for IF conditioni is FALSE";
}
?>
登入後複製

輸出:

PHP MD5()

範例#2

在下面的範例中,「$input_string1」變數是使用值「Pavan Kumar Sake」建立的。然後使用 echo 函數列印原始字串。 “
”和


僅用於換行符和水平線。使用 md() 函數並將其儲存在「$i1」變數中後,列印原始字串的 16 位元二進位格式。僅透過使用 md5() 函數內部的兩個參數即可完成。然後再次使用 md5() 函數,並且僅透過函數內部僅使用一個參數來完成。這裡將使用 echo 函數列印由 md5() 形成的 32 位元二進位格式雜湊碼。

代碼:

<?php
$input_string1 = 'Pavan Kumar Sake';
echo 'Original string :: '.$input_string1.'<br><hr>';
echo '16 bit binary format :: ';
$i1 = md5($input_string1,TRUE);
echo $i1;
echo '<br><hr>';
echo '32 bit binary format :: '.md5($input_string1).'<br><hr>';
?>
登入後複製

輸出:

PHP MD5()

範例 #3

在下面的範例中,我將使用 FOR 迴圈來實現 0-10 之間的數值的雜湊碼。首先,在 PHP 標籤內,使用數值 10 建立變數「$k」。然後使用 $i 值建立 FOR LOOP,用於初始化、條件和遞增值。循環將從 0 值開始,到 10 值結束。在迴圈內部 md5() 函數與內部的 $i 變數值一起使用。因此,當循環運行時,將計算每個 $i 變數的值 md5($i) 並列印特定數值的雜湊程式碼的輸出。然後“
”用於換行,以便更好地輸出 LOOP 元素。

代碼:

<?php
$k = 10;
for($i=0;$i<=$k;$i++){
print "Hash code of $i :: ";
print md5($i);
echo "<br>";
}
?>
登入後複製

輸出:

PHP MD5()

Example #4

In the below example, username and password checking conditions are involved inside of the PHP tags. At first, “$user1” variable and “$pass1” variable is created with string values inside. Then md5() functions are used to encode the “$user1” and “$pass1” variable’s values. Then by using the echo function hash codes of the variables are printed. Then “


” tag is used to print the horizontal with the help of echo function. Then IF and ELSE conditions are made to check the variables hash code values. If the hash code values of the “$user1” and “$pass1” are exactly equal to the string values passed in the IF conditions then IF conditions will become TRUE and will print some string statements which are mentioned using echo function. If the IF condition becomes FALSE then ELSE statements will be printed.

Code:

<?php
$user1 = "Pavan Kumar Sake";
$pass1 = "pavansake123";
$user1_encode = md5($user1);
$pass1_encode = md5($pass1);
echo "$user1 has hash code ::  $user1_encode <br>";
echo "$pass1 has hash code ::  $pass1_encode <br>";
echo "<hr>";
if (md5($user1)== "4c13476f5dd387106a2a629bf1a9a4a7"){
echo "Username is correct<br>";
if(md5($pass1)== "20b424c60b8495fae92d450cd78eb56d"){
echo "Password is also correct so login will be successful";
}
else{
echo "Incorrect Password is entered";
}
}
else{
echo "Incorrect Username is entered";
}
echo "<hr>";
?>
登入後複製

Output:

PHP MD5()

Conclusion

I hope you understood what is the definition of PHP md5() function with the syntax and its explanation, Info regarding the parameters in brief detail, Working of md5() function in PHP along with the various examples to understand the concept well.

以上是PHP MD5()的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!