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.
我们正在创建一个允许用户访问下载 word 文档的移动站点。
我们有一个允许访问的非移动设备网站,但是从可以访问尽可能多设备的移动设备上执行此操作的最佳方式是什么。
我们会更好地为网站使用 pdf,或者我们如何保证用户代理能够显示下载的 word 文档?
您可以使用 php 从文件中获取内容并将其显示为 html。
<?php $doc = file_get_contents('something.txt'); echo $doc; ?>
那会显示类似
测试文件
有些手机无法下载和查看文件,因此在页面上显示它们会更容易。