-1

我正在使用 file_put_contents 在 php 中创建文件创建脚本,那么如何将文件放置到下面的目录中?例如,脚本在 localhost:8080/favicon/ 中,我想将文件放在 localhost:8080 中,该怎么做?

4

2 回答 2

1
$dest = __DIR__ . '/../filename';
file_put_contents($dest, $data);

http://php.net/manual/language.constants.predefined.php

于 2013-11-13T01:08:42.890 回答
0

fclose(fopen(path_to_your_file_like_C:\abc\,"a")); 欲了解更多信息,请访问此处

于 2013-11-13T01:11:30.840 回答