0

有什么办法可以file_put_contents从不同的路径我的意思是而不是

c/programfiles/../../htdocs/test.txt 使用 c/test/test.txt

以下是我正在使用的代码:

$date=current_date;

$file = "test_"$date".txt";

$contents = "testtest";

file_put_contents($file, $contents);

提前谢谢了!

4

1 回答 1

1

在您的计算机上放置文件时,您可以使用相对或绝对路径,如下所示:

// absolute path
$file = "C:/temp/test.txt";

// relative path from C:/Program Files/wamp/htdocs/index.php
$file = "../../temp/test.txt";

这两个文件都指向同一个地方

于 2013-06-20T22:37:34.473 回答