我有一个小型上传系统来上传头像。我想显示一个带有 1 个按钮的警报框(上传成功)。这是我的 php 上传功能:
function change_profile_image($user_id, $file_temp, $file_extn){
$file_path = substr(md5(time()), 0, 10) . '.' . $file_extn;
move_uploaded_file($file_temp, 'images/profile/'.$file_path);
Thumbnail('images/profile/', $file_path, 'images/thumbs/');
mysql_query("UPDATE `users` SET `profile` = 'images/profile/" . mysql_real_escape_string($file_path) . "' WHERE `user_id` = " . (int)$user_id);
}
这是我调用函数的方式:
if (in_array($file_extn, $allowed) === true) {
change_profile_image($session_user_id, $file_temp, $file_extn);
header('Location: ' . $current_file);
exit();
}