Can bulletproof php upload pdf and word files?

旧城冷巷雨未停 提交于 2019-12-08 03:49:45

问题


I have used bulletproof php in the past for secure picture file uploads and trying recently for pdf and word files, it responded with an error message : 'Invalid File! Only (pdf, docx) image types are allowed', making me understand it will probably just handle image files as I couls still realise in the script here:

$doc_file = new Bulletproof**Image**($_FILES);

$doc_file->setMime(['pdf', 'docx']) ->setLocation('uploads');

I even did a fast search in the bulletproof.php file for the keyword 'pdf', but it returned nothing.

But researching online, some people seem to have used it for pdf file downloads but couldn't be more explicit about how, so I will like to know if there is someone here who has used it before please can you enlighten me or better still refer me to another library as good and simple to use as bulletproof php for file (word, pdf) uploads.

来源:https://stackoverflow.com/questions/47864886/can-bulletproof-php-upload-pdf-and-word-files

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!