Просмотр исходного кода

Utils : limitTextByLength

develop
Guillaume 3 лет назад
Родитель
Сommit
fae951b10c
1 измененных файлов: 9 добавлений и 0 удалений
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php Просмотреть файл

@@ -87,6 +87,15 @@ class Utils
return $text;
}

public function limitTextByLength($text, $length)
{
if(strlen($text) > $length) {
$text = substr($text, 0, $length).' ... ' ;
}

return $text ;
}

function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true)
{
if ($considerHtml) {

Загрузка…
Отмена
Сохранить