获取远程文件路径位置
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为用户提供在本地计算机上查找文件并通过 Web 表单将其提交给您的能力,例如……
然后您可以使用 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..
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..