<?php $contents = "<text>Text element</text><break><list><bullet>Bullet text</bullet></list>"; $tagArray = array( "image" => "img", "title" => "h1", "text" => "p", "break" => "br", "list" => "ul", "subtitle" => "h2", "bullet" => "li", ); $from = array_map(function ($v) { return "#<(/?)$v>#"; }, array_keys($tagArray)); $to = array_map(function ($v) { return "<\$1$v>"; }, $tagArray); echo preg_replace($from, $to, $contents);
You have javascript disabled. You will not be able to edit any code.