在 mysql 中导入 CSV 文件并进行电子邮件验证

发布于 2024-09-12 09:35:52 字数 169 浏览 6 评论 0原文

我的订阅者表中有 2 列。

名称 |电子邮件

我想在相应列中导入 CSV 文件数据,并验证电子邮件列。

我已经上传了 CSV 部分,但我不知道如何通过电子邮件验证插入数据。

我该如何做到这一点,我搜索了整个网络,但找不到任何有效的答案。

请帮忙

I have a 2 column in my subscriber table.

Name | email

I want to import a CSV file data in respective column with validation of email column.

I have done uploading CSV part, but i don't know how to insert data with email validation.

How I can do this, I have search allover net but I can't find any working answer on it.

Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂ガ小子 2024-09-19 09:35:53

要验证电子邮件,您可以使用 preg_match() 和电子邮件模式,例如 ^[A-Z0-9._%+-]+@[A-Z0-9.-]+ \.[AZ]{2,4}$ (请参阅 正则表达式 )。

For validating the email you could use preg_match() with an email pattern like ^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$ (see regex).

旧情别恋 2024-09-19 09:35:53

您可以通过两种方式完成此操作:

  1. 将所有数据插入表中(这可以使用 mysql 本身轻松完成),然后使用正则表达式使用 PHP 读取和验证数据。
  2. 使用 PHP 读取 CSV,验证电子邮件,仅在有效时将其插入表中

可以在此处找到一些基本的电子邮件正则表达式: http://regexlib.com/Search.aspx?k=email

You can do it in two ways:

  1. Insert all the data into the table (which can easily be done with mysql itself) and then read and validate the data with PHP using regular expressions.
  2. Use PHP to read the CSV, validate the email and only if valid, insert them into the table

Some basic email regex can be found here: http://regexlib.com/Search.aspx?k=email

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文