gpt4 book ai didi

php - 写入文本文件 php

转载 作者:可可西里 更新时间:2023-11-01 12:48:31 24 4
gpt4 key购买 nike

我正在使用 php。

我想写一个php页面从另一个页面获取参数并写入文件文本。并且:

  • 如果已有文件文本,则写入新行

  • 每天创建一个文件文本

例子:

注册.php

<body>
<form action='process.php' method='GET'>
Name: <input type='text' name='name'/>
<br/>
Age: <input type='text' name='age'/>
<br/>
<input type='submit' value='SUBMIT'/>
</form>
</body>

进程.php

$name = $_GET['name'];
$age = $_GET['age'];

$file_handle = fopen("testFile.txt", "w");
$file_contents = "name:" . $name . "age:" . $age;

fwrite($file_handle, $file_contents);
fclose($file_handle);
print "file created and written to";

我该怎么做?

最佳答案

使用 file_get_contents() 和 file_put_contents() 函数。

示例:

    $file = 'output.txt';
$buffer = 'my new line here';

if (file_exists($file)) {
$buffer = file_get_contents($file) . "\n" . $buffer;
}

$success = file_put_contents($file, $buffer);

http://php.net/manual/en/function.file-put-contents.php

http://php.net/manual/en/function.file-get-contents.php

关于php - 写入文本文件 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14575253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com