How to convert multiple
tag to a single
tag in php

后端 未结 9 1257
执念已碎
执念已碎 2020-12-03 02:03

Wanted to convert






into


9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 02:31

    Use a regular expression to match
    one or more times, then use preg_replace (or similar) to replace with
    such as levik's reply.

提交回复
热议问题