作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何在 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(" ",' ', $_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/
我是一名优秀的程序员,十分优秀!