我熟悉phpmailer和它的addattachment方法,但我不知道如何動態添加文件的名稱?PHP-動態添加文件的名稱添加附件PHPmailer
$m->addAttachment($uploadfile, 'I want the name of the file here');
其餘部分link
我想,當用戶選擇了文件中的方法動態顯示的文件名相同的代碼。
我熟悉phpmailer和它的addattachment方法,但我不知道如何動態添加文件的名稱?PHP-動態添加文件的名稱添加附件PHPmailer
$m->addAttachment($uploadfile, 'I want the name of the file here');
其餘部分link
我想,當用戶選擇了文件中的方法動態顯示的文件名相同的代碼。
原始文件名存儲在$_FILES['userfile']['name']
。所以你需要的代碼是:
$mail->addAttachment($uploadfile, $_FILES['userfile']['name']);
是的,它工作.....我也想知道在phpmailer中使用addattachment最大文件大小是什麼或有沒有辦法增加文件大小? –
請使用google。它是爲此目的而創建的。 –
當我上傳一個文件,說超過500KB它給了我這個錯誤:無法將文件移動到C:\ Windows \ Temp \ 7e12C1E.tmp –
define *「dynamically」*。你給了我們「一行」的代碼。 –
@ Fred-ii-讓改變現在可以幫助我? –