微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 使用preg_replace时如何忽略字符串中的一些单词

我想做的是

$var = "[h1]This is Just a text, [h1]and this inside it[/h1] This just example[/h1]";
$output = preg_replace("/\[h1\](.*?)\[\/h1]/", "<h1>$1</h1>", $var);
echo $output;

在这里我想首先忽略[/ h1]来使结果正确,我怎样才能实现它?无论如何只有第一个和最后一个标签

我不知道我应该做什么或试试,我还不够尝试,

编辑

输出

<h1>This is Just a text, [h1]and this inside it</h1> This just example[/h1]

但我希望得到

<h1>This is Just a text, <h1>and this inside it</h1> This just example</h1>

解决方法:

如果您只想替换< h1>的字符串[h1],则可以在不使用正则表达式的情况下实现所需的输出.等等

<?PHP
$var = "[h1]This is Just a text, [h1]and this inside it[/h1] This just example[/h1]";

echo str_replace(['[h1]', '[/h1]'], ['<h1>', '</h1>'], $var);

结果:

<h1>This is Just a text, <h1>and this inside it</h1> This just example</h1>

https://3v4l.org/q9a41

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐