gpt4 book ai didi

php - 使用 php preg_replace_callback - 但替换整个字符串而不是每个子字符串

转载 作者:搜寻专家 更新时间:2023-10-31 21:11:02 26 4
gpt4 key购买 nike

<分区>

嗨,我希望有人能提供帮助,因为对正则表达式不太热。

得到如下脚本片段..

<?php

$news="test message {image=abc} more text text text {image=def}";

$news=preg_replace_callback("/\{image=.*\}/i",function ($matches) { $field=$matches[0]; return "*".$field."*"; }, $news);


echo $news;

?>

但是当我运行它时,它返回

test message *{image=abc} more text text text {image=def}*

相反,我希望它返回..

test message *{image=abc}* more text text text *{image=def}*

感谢您的帮助。

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