getcwd()
函数在 PHP 中用于获取当前工作目录的路径
然而,如果你需要获取网络上的某个目录,你可以使用 fopen()
或 file_get_contents()
等函数与 URL 结合来实现。例如:
$url = 'http://example.com/path/to/directory/'; $handle = fopen($url, 'r'); if ($handle) { $directory = stream_get_contents($handle); fclose($handle); echo $directory; } else { echo '无法打开 URL'; }
这段代码将尝试打开指定的 URL,并将内容读取到 $directory
变量中。请注意,这种方法可能会受到跨域资源共享(CORS)限制,具体取决于目标服务器的设置。