我想从 url 中获取一个 GET 值并将其存储在一个文件中。我只是无法以我想要的格式获得它。
代码:
<?php
$emailaccount = $_GET['email'];
$emailaccount .= '\n';
file_put_contents($file, $emailaccount, FILE_APPEND | LOCK_EX);
echo 'done' . PHP_EOL;
?>
网址如下所示:
www.website.com/index.php?email=account@gmail.com
我的 *.txt 文件应如下所示:
1account@gmail.com
2account@gmail.com
3account@gmail.com
但是我的文件看起来不像这样,每个值都在同一行,为什么?