hash_equals function()是PHP中的內置函數,用於同時比較兩個字符串是否相等,以比較兩個字符串。
用法:
hash_equals( $known_str, $usr_str )
參數:該函數接受上麵提到的兩個參數,並在下麵進行描述。
- $known_str:此參數用於指定已知長度的字符串。
- $usr_str:此參數用於指定user-supplied字符串。
返回值:如果兩個字符串相等,則此函數返回True,否則返回False。
以下示例程序旨在說明PHP中的hash_equals()函數:
程序1:
<?php
// PHP program to illustrate
// hash_equals function
$known_str = crypt('GFG', 'Hello-GFG');
$usr_str = crypt('GFG', 'Hello-GFG');
// Compare bith strings
$res = hash_equals($known_str, $usr_str);
// Display result
var_dump($res);
?>
輸出:
bool(true)
程序2:
<?php
// PHP program to illustrate
// hash_equals function
$known_str = crypt('GFG', 'Hello-GFG');
$usr_str = crypt('GeeksforGeeks', 'Hello-GFG');
// Compare bith strings
$res = hash_equals($known_str, $usr_str);
// Display result
var_dump($res);
?>
輸出:
bool(false)
參考: http://php.net/manual/en/function.hash-equals.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | hash_equals() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。