Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
if (move_uploaded_file($file['tmp_name'], $ return array('success'=> true); }
在将临时文件移动到其位置之前,如何对 csv 的内容进行 utf-8 处理。我正在为这个 webapp 使用 php。我已经有了utf编码功能,但是,我不知道如何干预上传过程,在文件上传到服务器之前对文件的内容进行编码。
问候
我不相信你可以对文件做任何事情,直到它被上传到服务器,至少使用 PHP。你应该把它放在一个 tmp 文件夹中,弄乱它,然后移动它。