gpt4 book ai didi

php - 如何将cid链接转换为http链接?

转载 作者:可可西里 更新时间:2023-10-31 22:47:06 25 4
gpt4 key购买 nike

我正在编写一个应用程序来解析来自 pop3 邮箱的电子邮件。我已经提取了消息的附件,现在我想转换消息文本中的链接。

也就是说我有这个:src="cid:image001.png@01CC9ED6.84327130"我想要类似的东西:src="http://xxx/image001.png"

你能帮我用正则表达式吗?preg_replace('/cid:/', 'http://xxx') 现在如何删除 '@' 之后的序列?

谢谢

最佳答案

尝试:

$input  = 'src="cid:image001.png@01CC9ED6.84327130"';
$output = preg_replace('/cid:(.*?)@[\w.]*/', 'http://xxx/$1', $input);

// string(29) "src="http://xxx/image001.png""

关于php - 如何将cid链接转换为http链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8077974/

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