Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save softsolution/5d6e6fea645aa34970e1 to your computer and use it in GitHub Desktop.
Save softsolution/5d6e6fea645aa34970e1 to your computer and use it in GitHub Desktop.
function video_2html($elem) {
$str = '<div class="bb_tag_video">';
foreach ($elem['val'] as $item) {
if ($item['type']=='item') { continue; }
$item['str'] = preg_replace('/<iframe.*>.+<\/iframe>/iu', '', $item['str']);
$str .= strip_tags($item['str'], '<iframe><object><param><embed>');
}
$str .= '</div>';
return cmsCore::htmlCleanUp($str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment