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.
是否可以在不知道目录的情况下检查用户计算机上的目录?我想编写一个 php 程序,让我可以查看我的 Skype 照片,但每台计算机都有不同的文件目录,具体取决于计算机上的帐户名。文件目录:
C:\Users\compUser\AppData\Roaming\skype\Pictures
我正在寻找类似的功能;如果我们要在 Windows pc 上执行运行命令,您可以键入%appdata%\skype\pictures并弹出文件目录。
%appdata%\skype\pictures
PHP 是一种服务器端语言,它只能浏览自己服务器上的文件。
出于安全考虑,您无法访问本地用户 pc 目录,您只能访问服务器目录(运行 php 的位置)
PHP 是一种服务器端语言,它只能浏览自己服务器上的文件。并且您无法在没有输入的情况下从计算机访问任何文件到 php 服务器