gpt4 book ai didi

php - 将邮件内容分离并转为MYSQL数据PHP

转载 作者:行者123 更新时间:2023-11-29 12:35:26 24 4
gpt4 key购买 nike

这是一个例子:

Customer: Bob Smith 
Account: 1234
Address: 123 Main St
City: Anywhere, USA

我想将其转换为 MYSQL 表,其中包含客户、帐户、地址和城市列。

我不是实现这一目标的最佳方式。

最佳答案

您可以这样解析您的文本:

$str = "Customer: Bob Smith Account: 1234 Address: 123 Main St City: Anywhere, USA";
preg_match("/Customer\\:(.*)Account\\:(.*)Address\\:(.*)City\\:(.*)/",$str,$matches);
$customer = $matches[1];
$account = $matches[2];
$address = $matches[3];
$city= $matches[4];

经过这个过程。您可以轻松发送到 mysql :)

关于php - 将邮件内容分离并转为MYSQL数据PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26854914/

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