我擁有帶加密數據(名稱和姓氏)的數據庫。在我的代碼中,我檢索數據以解密名稱和姓氏。如何在數組中搜索
for ($i=0;$i<$pocet;$i++)
{
$row= mysqli_fetch_array($vysledek);
$name = $c_hash->decrypt($row['name']);
$surname = $c_hash->decrypt($row['surname']);
$a_name['id']=$name;
//echo $a_name['id'].' ';
$a_surname['id']=$surname;
//echo $a_surname['id'];
//echo '<br />';
}
enter code here
但是我該如何在這個數組中搜索?例如用戶想要找到名稱=「John」。 請問,可以幫我或給我一個建議?
感謝M.
http://php.net/manual/en/control-structures.foreach.php – aynber
如果你想在數據庫中搜索 - 只需加密並搜索。 – eocron