标签: php file variables
当用户进入我的网站页面时,这段代码会向用户发送电子邮件: 。
$email=$userprofile->email;
。 。 你可以像这样回应它:
<?php echo $email;?>
但是如何将它存储在每行一封电子邮件的文本文件中?谢谢
答案 0 :(得分:2)
file_put_contents("name_of_file.txt", preg_replace("/\r|\n/"," ", $email)."\n");
学习使用php文档。它们是excellent。