出於某種原因,我不能讓我的函數返回一個字符串...PHP函數沒有返回值
$password = crypt_password_input($password, "");
//Encrypt Password longer than 8 characters
function crypt_password_input($inputPassword, $newPassword)
{
$passwordLength = strlen($inputPassword);
if($passwordLength > 8){
$encryptString = substr($inputPassword, 0, 8);
$inputPassword = substr($inputPassword, 8);
$newPassword .= crypt($encryptString, "HIDDENSALT");
crypt_password_input($inputPassword, $newPassword);
}else{
$newPassword .= crypt($inputPassword, "HIDDENSALT");
echo "Final: " . $newPassword . "<br/>";
return $newPassword;
}
}
echo "Encrypted from the input: " . $password . "<br/>";
這是這個腳本的輸出...
決賽:ltu1GUwy71wHkltVbYX1aNLfLYltEZ7Ww8GghfM
從輸入加密:
acutally你返回的字符串是'ltu1GUwy71wHkltVbYX1aNLfLYltEZ7Ww8GghfM' – Robert