瀏覽代碼

Utils : méthode limitText (Utils)

reduction
Guillaume 4 年之前
父節點
當前提交
92065e4af8
共有 1 個檔案被更改,包括 9 行新增0 行删除
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php 查看文件

@@ -148,4 +148,13 @@ class Utils
return in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']) ;
}

function limitText($text, $limit) {
if (str_word_count($text, 0) > $limit) {
$words = str_word_count($text, 2);
$pos = array_keys($words);
$text = substr($text, 0, $pos[$limit]) . '...';
}
return $text;
}

}

Loading…
取消
儲存