1

我有 email.txt 存储在我的服务器中 email.txt 的路径是

/home/xxxx/public_htnl/email.txt

email.txt 包含数千封订阅者的电子邮件,每天都会更新。我想每天使用 cron 将这些电子邮件导入其他数据库。

我已经尝试过了,但它给出了错误

不能加载。Access denied for user 'test'@'localhost' (using password: YES)

我想我没有运行权限LOAD DATA INFILE

我的代码是:

<?php

$db = mysql_connect('localhost', 'test', 'test')
or die('Failed to connect');
mysql_select_db('test', $db);


$string = file_get_contents("http://www.xyz.com/email.txt", "r");
$myFile = "/home/xxx/public_html/email.txt";

$fh = fopen($myFile, 'w') or die("Could not open: " . mysql_error());
fwrite($fh, $string);
fclose($fh);


$result = mysql_query("LOAD DATA INFILE '$myFile'" .
                  " INTO TABLE email");
if (!$result) {
die("Could not load. " . mysql_error());
}
?>

可以接受任何其他好的方法。请不要建议在存储电子邮件等时将数据直接存储在其他数据库中。

4

1 回答 1

0

作为 root MySQL 用户,尝试运行查询:

GRANT FILE on *.* to 'test'@'localhost';

如果您仍然收到错误,请确保您的测试用户的用户名和密码正确,并且您访问 MySQL 的主机与测试用户和密码的主机匹配。

编辑:

<?php

$db = mysql_connect('localhost', 'test', 'test') or die(mysql_error());

if (!mysql_select_db('test', $db)) die(mysql_error());

$emails = file("http://www.xyz.com/email.txt");

foreach($emails as $email) {
    $email = trim($email);
    if ($email == '' || strpos($email, '@') === false) continue;
    $email = mysql_real_escape_string($email);

    $query = "INSERT INTO `email` VALUES('$email')";
    $result = mysql_query($query);
    if (!$result) {
        echo "Failed to insert $email.  " . mysql_error() . "<br />\n";
    }
}

如果有很多很多电子邮件,您可以构建一个电子邮件地址数组并每隔一段时间进行一次扩展插入。

INSERT INTO emails VALUES('email1'), ('email2'), ('email3'), ('email4')
于 2012-08-11T00:55:44.987 回答