gpt4 book ai didi

php - 我如何使用 php 中的读/写逐一添加电子邮件

转载 作者:行者123 更新时间:2023-12-03 23:05:58 25 4
gpt4 key购买 nike

我如何在 php 中使用读/写逐个添加电子邮件

我得到以下输出并创建一个名为“更新”的文件夹更新文件夹包含用户输入的一封电子邮件已存储并且用户输入另一个电子邮件 ID 已经存在的电子邮件 ID 已替换为新电子邮件 ID 为什么?

我需要一个一个的电子邮件 ID 调用

apap@gmail.com
asadsd@gmail.com

这是我的代码,请查看

<form action="demo.php" method="post">
<input type="text" name="textEmail">
<input type="submit" value="send">
</form>

Demo.php文件是

<?php

// Open the text file
$f = fopen("update.txt", "w");

// Write text


$text = strtr(" ",'&nbsp;', $_POST['textEmail']);

fwrite($f,$text);
//fwrite($f,$text);
// Close the text file
fclose($f);

// Open file for reading, and read the line
$f = fopen("update.txt", "r");

// Read text
echo fgets($f);
fclose($f);

?>

最佳答案

以附加模式而不是写入模式打开文件将 "w" 替换为 "a"

$f = fopen("update.txt", "a");


发件人:http://php.net/manual/en/function.fopen.php

'w' Open for writing only; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.

'a' Open for writing only; place the file pointer at the end of the file. If the file does not exist, attempt to create it...

关于php - 我如何使用 php 中的读/写逐一添加电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37939611/

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