PHP 脚本使用共享网络文件夹 - 这可以从域外部实现吗?
我遇到以下困难: 三台服务器A、B、C:A、B在同一网域; C 在另一个。 在服务器 A 上执行的 PHP 脚本写入服务器 B 上的共享文件夹。 在服务器 C 上执行的相同脚本无法写入服务器 B。
PHP 看起来像这样:
oject->Output('\\\\serverB\\sharedfolder\\file.dummy');
有什么方法可以让这个脚本在服务器 C 上优雅地工作吗?
当我远程桌面到服务器 C 并想要查看 \\serverB\sharedfolder
的内容时,会弹出登录提示并要求输入用户名和密码。 我可以提供此信息并随后访问服务器 B 上的共享文件夹。但是我如何通过 PHP 脚本执行此操作? 是否可以?
I am having the following difficulties:
Three servers A,B,C : A,B in the same network domain; C in another.
PHP scripts executing on server A write to a shared folder on server B.
The same scripts executing on server C fail to write to server B.
PHP looks something like this:
oject->Output('\\\\serverB\\sharedfolder\\file.dummy');
Is there any way I can make this script work elegantly on server C?
When I remote-desktop to server C and want to see the contents of \\serverB\sharedfolder
, a login prompt pops up and asks for a user name and password. This I can provide and subsequently access the shared folder on server B. But how could I do this from a PHP script? Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
格式为:
\\servername\sharename%username:password
smb://[[domain;]username[:password]@]server[/share[/path] ]]
The formats are:
\\servername\sharename%username:password
smb://[[domain;]username[:password]@]server[/share[/path]]
我认为考虑到安全性,最简单的选择是将服务器 C 的内容写入服务器 A、B 所在的套接字,并有一个附加脚本将从套接字写入的内容保存到共享文件夹...... .
http://www.php.net/manual/en/function.fsockopen .php
I think the easiest option with security in mind would be to write the content from server C in to a socket where server A,B reside and have an additional script which will save the content written from the socket to your shared folder.....
http://www.php.net/manual/en/function.fsockopen.php