gpt4 book ai didi

php - 如何在 php 中从 中提取电子邮件

转载 作者:行者123 更新时间:2023-11-30 10:41:42 25 4
gpt4 key购买 nike

从下面的 HTML 中,我只需要提取电子邮件地址以将其保存在数据库中。我需要将它放入数组中,我计划使用 jquery/ajax 来使用 dom 提取所有电子邮件并使用 ajax 将其保存到另一个页面,但问题是 <td>与其他<td>没有唯一标识也就是说,如果 td 有类名或 ID 名,我可以这样做

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="100%" border="1">
<tr></tr>
<tr>
<td>NAME</td>
<td>ADDRESS</td>
<td>PHONE</td>
<td>EMAIL</td>
</tr>
<tr>
<td>wwqw</td>
<td>qww</td>
<td>ew</td>
<td>email@exmaple.com</td>
</tr>
<tr>
<td>e</td>
<td>wew</td>
<td>ew</td>
<td>emai1l@exmaple.com</td>
</tr>
<tr>
<td>e</td>
<td>ewe</td>
<td>we</td>
<td>email2@exmaple.com</td>
</tr>
<tr>
<td>we</td>
<td>we</td>
<td>we</td>
<td>emai3l@exmaple.com</td>
</tr>
<tr>
<td>ww</td>
<td>w</td>
<td>w</td>
<td>emai4l@exmaple.com</td>
</tr>
</table>
</body>
</html>

我需要获取电子邮件地址并将其存储在如下数组中

Array
(
[0] => email@exmaple.com
[1] => emai1l@exmaple.com
[2] => email2@exmaple.com
[3] => emai3l@exmaple.com
[4] => emai4l@exmaple.com
)

<td>可以有变量 class 和 id ,所以很难使用 jquery 等来拉动它们。我被它挡住了。任何帮助将不胜感激

最佳答案

使用 jQuery-->

$(document).ready(function() {
$('tr').find('td:last').each(function(){
var t = $(this).text();
if(typeof(t) === 'string' && t.indexOf('@') >-1) alert(t);
})
});​

关于php - 如何在 php 中从 <td> 中提取电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10696532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com