时间:2024-03-09
WordPress函数update_attached_file根据附件的ID更新文件路径。
update_attached_file( int $attachment_id, string $file )
$attachment_id
整数
附件的ID
$file
字符串
附件的文件路径
成功时为true,失败时为false。
function secure_attachment_file($attachment_id) { $file = get_attached_file($attachment_id); $file_parts = pathinfo($file); $file_new = $file_parts['dirname'] . '/' . $file_parts['filename'] . '_' . wp_generate_password(5, false) . '.' . $file_parts['extension']; if(rename($file, $file_new)) { update_attached_file($attachment_id, $file_new); return true; } else { return false; } }
update_attached_file()函数位于:wp-includes/post.php
相关函数:
_wp_relative_upload_path()
wp_get_upload_dir()
get_attached_file()
Copyright © 2019-2024 thinkphp.xyz