获取远程文件路径位置

发布于 2024-08-31 15:24:29 字数 107 浏览 3 评论 0原文

我正在使用 PHP,并且想要获取远程文件路径位置,以便我可以读取文件内容。

我希望用户定向到一个特定的文件,该文件可以位于计算机中的任何位置,以便脚本可以处理它。

谢谢

I am working with PHP and would like to get a remote file path location so that I can read file contents.

I would like the user to direct to a particular file, which can be located anywhere in the computer, so that it can be processed by the script.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沐歌 2024-09-07 15:24:29

您可以为用户提供在本地计算机上查找文件并通过 Web 表单将其提交给您的能力,例如……

<form id="myForm" enctype="multipart/form-data" action="/formHandler.php" method="post" >
<label for="fileUpload">File to Upload:</label>
<input name="fileUpload" id="fileUpload" type="file" /><br />
<input name="submit" id="submit" type="submit" value="Upload Now"></form>

然后您可以使用 PHP 或服务器端的任何内容在您这边处理它。由于 PHP 是您的标签之一,因此您可以从 PHP 参考站点了解有关如何在服务器端访问和使用的更多信息:

http://www.php.net/manual/en/features.file-upload.post-method.php

我希望我正确理解你的问题..

You can offer a user the ability to locate a file on their local computer and submit it to you via a web form, like..

<form id="myForm" enctype="multipart/form-data" action="/formHandler.php" method="post" >
<label for="fileUpload">File to Upload:</label>
<input name="fileUpload" id="fileUpload" type="file" /><br />
<input name="submit" id="submit" type="submit" value="Upload Now"></form>

Then you can process it on your side with PHP, or whatever you have on the server end. Since PHP is one of your tags, you can learn more on how to access, and work with, on the server end from the PHP reference site:

http://www.php.net/manual/en/features.file-upload.post-method.php

I hope I understood your question correctly..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文