瀏覽代碼

Utils : limitTextByLength

develop
Guillaume 3 年之前
父節點
當前提交
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) {

Loading…
取消
儲存