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.
我希望用户提交一个 XML 文件,并且我想使用 PHP 解析该文件。是否可以在不使用 PHP 将文件上传到服务器的情况下获取文件内容?
谢谢。
不,PHP 在服务器上运行,因此必须将要处理的数据发送到服务器才能实现。
另一方面,JavaScript 在客户端的浏览器中运行。使用 JavaScript,您可以处理用户选择的文件,而无需先将其发送到服务器,例如,如果您想在将其发送到服务器之前对其进行预处理。