我想從URL獲取GET值並將其存儲在文件中。我無法以我想要的格式獲得它。從URL獲取GET值並將其保存在文件中
代碼:
<?php
$emailaccount = $_GET['email'];
$emailaccount .= '\n';
file_put_contents($file, $emailaccount, FILE_APPEND | LOCK_EX);
echo 'done' . PHP_EOL;
?>
URL看起來像:
www.website.com/[email protected]
我的* .txt文件應該樣子:
[email protected]
[email protected]
[email protected]
但我的文件看起來並不像這個,每個值都在同一行上,爲什麼?
請注意URL中的@符號。 – craig1231
你的代碼做了什麼,你不想要它? – craig1231
它不會像它應該分離的電子郵件。 –