我试图在局域网上的服务器上获取一个文件,以便客户端电脑通过超链接打开。现在我只需要这个在 IE 上工作。
假设文件名存储在变量 $sPath 中,因此 file_exists($sPath) 返回 true,服务器名称为 server_name。超链接会是什么样子?这是我使用过的许多组合中的一些......
<a href="file:///intocloud$sPath">here</a>
<a href="file://intocloud$sPath">here</a>
<a href="file://///intocloud$sPath">here</a>
<a href="/////intocloud$sPath">here</a>
这些都不起作用,我也尝试了其他一些方法。