_locale_import_shorten_comments
includes/locale.inc, строка 1070
- Версии
- 5 – 6
_locale_import_shorten_comments($comment)
Generate a short, one string version of the passed comment array
Параметры
$comment
An array of strings containing a comment
Возвращаемое значение
Short one string version of the comment
Код
<?php
function _locale_import_shorten_comments($comment) {
$comm = '';
while (count($comment)) {
$test = $comm . substr(array_shift($comment), 1) .', ';
if (strlen($comm) < 130) {
$comm = $test;
}
else {
break;
}
}
return substr($comm, 0, -2);
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии