function getRitchText( $text ){
// emoticonos
$text = str_replace( ';)', '
', $text );
$text = str_replace( ':(', '
', $text );
$text = str_replace( ':)', '
', $text );
$text = str_replace( array( ':D', 'xD' ), '
', $text );
$text = str_replace( array( ':p', ':P' ), '
', $text );
// youtube
$file_pattern = '/http\:\/\/[A-Z\.]*youtube.com\/[A-Z]*\?v=([A-Z0-9&=+-;]+)/i';
$text = preg_replace( $file_pattern, '', $text );
// enlaces imagenes
$file_pattern = '/http\:\/\/([a-zA-Z0-9\.\-\/]+)?\.(png|gif|jpg)/i';
$text = preg_replace( $file_pattern, '
', $text );
// linkize
$file_pattern = '#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is';
$text = preg_replace( $file_pattern, '\\1\\2', $text );
// saltos de linea
$text = nl2br( $text );
return $text;
}