-2

我想从 url 参数中保存一个值

到服务器上的txt文件。

$id = $_GET['id'];

我得到了价值 不知道如何将它保存在 Txt 文件中。

4

4 回答 4

0

您所要做的就是打开一个文件并写入内容:

 $fd = fopen("FILENAME","w");
 fwrite($fd, $id);
 fclose($fd);

看PHP手册:PHP Filesystem funcions

于 2013-07-17T09:41:16.300 回答
0
$filename = 'test.txt';
if ($handle = fopen($filename, "w")) {
    fwrite($handle, $id);
}
fclose($handle);
于 2013-07-17T09:42:20.497 回答
0

你可以使用这种方式

$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $id;
fwrite($fh, $stringData);
fclose($fh);
于 2013-07-17T09:42:43.500 回答
0

好的,你必须打开一个文件:

$datei_handle=fopen("part_of_url.txt",w);   

确保您使用正确的模式!写你的东西,如果那样的话。

fwrite($datei_handle,$your_url_part);

关闭文件。

fclose($datei_handle);

还要检查曼努埃尔。我认为那里的解释很好。 http://php.net/manual/de/function.fwrite.php

希望有所帮助。

于 2013-07-17T09:44:48.227 回答