如何使用preg_replace_callback?
我有以下 HTML 语句
[otsection]Wallpapers[/otsection]
WALLPAPERS GO HERE
[otsection]Videos[/otsection]
VIDEOS GO HERE
我试图做的是用html div替换[otsection]标签。问题是我想将 div 的 id 从 1->2->3 递增,依此类推。
因此,例如,上述语句应转换为
<div class="otsection" id="1">Wallpapers</div>
WALLPAPERS GO HERE
<div class="otsection" id="2">Videos</div>
VIDEOS GO HERE
据我所知,最好的方法是通过preg_replace_callback在每次替换之间增加id变量。但是经过1个小时的工作,我只是无法让它工作。
任何这方面的帮助将不胜感激!