* Name: html2text
* Purpose: transform a html to a text version * @param string */ function smarty_modifier_htmlToText( $string ) { return preg_replace('/<.*>/U', '', $string); }