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.
谁能知道如何知道客户端而不是服务器的路径..
示例我有 linux 服务器,当我使用时:
$coredir = dirname(__FILE__) . "/"; var_dump($coredir);
然后我在windows pc中运行它。它像这样:
/var/www/sweeee
请帮我找到windows客户端的路径。不是服务器linux ..
多谢!
你有一个误解。PHP在服务器端运行。这意味着它无法访问客户端计算机的文件系统。另一方面,Javascript 在客户端运行。因此,绝对没有办法使用 php 获取客户端的文件系统目录。
你不会得到答案,因为你使用的是 PHP,它只在服务器上运行。您无法以您所想的方式获取有关使用 PHP 的客户端的任何信息。
即使您尝试使用 JavaScript 之类的东西,您也会对授予客户端代码的访问级别感到非常失望。