_drupal_html_to_text_clean
includes/mail.inc, строка 461
- Версии
- 6
_drupal_html_to_text_clean($indent)
Helper function for drupal_wrap_mail()
and drupal_html_to_text()
.
Replace all non-quotation markers from a given piece of indentation with spaces.
Код
<?php
function _drupal_html_to_text_clean($indent) {
return preg_replace('/[^>]/', ' ', $indent);
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии