我有以下PHP代码:
$file = 'gclids.php';
$current = file_get_contents($file);
$current .= $_GET['gclid'];
$current .= "\r\n"
file_put_contents($file, $current);
它基本上在$ current中加载列表(gclids.php)的内容,并将来自谷歌adwords($ _GET [' gclid'])的参数附加到$ current。然后,它应该在$ current附加一个换行符,所以我们应该有这样的东西:
xyz
zyx
xyz
zyx
但它没有附加换行符,所以我们有这样的东西:
xyzzyxxyzzyx
所以,一般来说:
脚本接收值 - >将其保存到列表
感谢您的帮助!