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.
我需要从windows系统共享文件夹中读取一个目录到linux环境中的PHP脚本但是脚本显示错误“无法打开目录:没有这样的文件或目录”
如何使用 php 读取 linux 中的 windows 共享目录?
如果您可以使用以下安装命令在 Linux 机器上安装 Windows 共享,这与 PHP IMO 无关:
mount -t cifs -o username=WINDOWS_USER_NAME \\\\hostname\\sharename /mnt/myshare
然后,您应该能够/mnt/myshare像 PHP 脚本中的任何其他文件一样读取共享中的文件。
/mnt/myshare