我制作了一个函数,该函数使用wp_generate_password()
生成21位随机字符串,使用wp_hash()
对其进行散列,将生成的字符串保存到数据库中,然后return
将散列的字符串保存。它工作得很好。但是,我想做另一种方法,而不是将生成的随机字符串保存到数据库,而是要保存散列字符串和return
随机字符串。
但是它不起作用。当我尝试将哈希字符串保存在数据库中时,它根本不会创建任何条目。如果我想保存随机字符串,效果很好。
我尝试过清理散列的字符串,应用strval()
,将$wpdb->insert
与format
一起应用,其中我将其声明为字符串。没用!我什至尝试将服务器资源增加到4GB ram,2Vcore处理器。将每个php.ini资源的限制增加到3GB。无效。
这是完美运行的功能。但是,在此函数中,我想将'verification_code'=>$email_verification
替换为'verification_code'=>$email_verification_hashed
,但它不起作用。我想使其工作,以便将散列的字符串发送到数据库,并返回随机字符串。
function generate_verification($user_id) {
$user_info = get_userdata($user_id);
$email_verification = wp_generate_password( 21, true, true );
$email_verification_hashed = wp_hash( $email_verification );
if (isset($user_info)) {
global $wpdb;
$table_name = $wpdb->base_prefix.'custom_table'; //already exist
$user_email = $user_info->user_email;
$data = array('email'=>$user_email, 'verification_code'=>$email_verification, 'user_id'=>$user_id);
$where = array('user_id'=>$user_id);
$existing_data = "SELECT * FROM {$wpdb->prefix}custom_table WHERE user_id = {$user_id}";
$existing_data_results = $wpdb->get_results($query);
if($existing_data_results > 0) {
$wpdb->update( $table_name, $data, $where);
return $email_verification_hashed;
} else {
$wpdb->insert( $table_name, $data);
return $email_verification_hashed;
}
} else {
return 'Failed';
}
}
这是一个愚蠢的错误,数据库列为VARCHAR(21)
,而散列的字符串比这更长。我只是将列更改为VARCHAR(255)
,现在就可以使用了