如何顯示jQuery的文件上傳名稱多文件上傳插件v1.48?如何顯示jQuery的文件上傳名稱多文件上傳插件
用戶上傳文件後,有沒有辦法顯示他們已經上傳文件,在配置文件下?
1.if (isset($_FILES['tb-documents'])) {
$documents = $_FILES['tb-documents'];
foreach ($documents['name'] as $key => $value) {
if ($documents['name'][$key]) {
$document = array(
'name' => $documents['name'][$key],
'type' => $documents['type'][$key],
'tmp_name' => $documents['tmp_name'][$key],
'error' => $documents['error'][$key],
'size' => $documents['size'][$key]
);
$status = wp_handle_upload($document, array('test_form' => false));
if(!isset($status['error'])) {
$uploads = wp_upload_dir();
add_user_meta($user->ID, 'tb-documents', $uploads['url'].'/'.basename($status['file']));
}
}
}
}
上傳在用戶配置文件中運行良好。但是,我想提取他們上傳的文件名並將所有上傳的文件名顯示給他們。
我應該使用哪個變量?
1.I tried this, $content .= '.$documents['name']'; but it doesn't work. It shows syntax error.
嗨,應該使用哪個變量來提取文件名? $ content。='
Download Document #' . ($y+1) . ''; }這是我正在使用的代碼,但它將文本鏈接顯示爲下載文檔。有沒有辦法將固定下載文檔#更改爲顯示實際文件名的文本? – user2987446
難道你不能使用$ documents ['name'] [$ key]? – dikirill