how to remove script tag such {audio}{/audio} or {youtube}{/youtube}
User1999818’s Question:
in my old data it store joomla tags such “{audio}{/audio}” or “{youtube}{/youtube}”, and I want to strip these tag.
how I do in php code? if I want leave it content or remove it content.
Please help me, thank you.
Compared to regular expression replace function str_replace()
is a lot faster.
$text = str_replace("{audio}", "", $text);
$text = str_replace("{/audio}", "", $text);