コード例 #1
0
ファイル: Format.php プロジェクト: ngangchill/templater
 public function toList($collection, $key, $char_limit = null)
 {
     $list = new ItemList($collection, $key);
     if ($char_limit) {
         $list->setCharLimit($char_limit);
     }
     return (string) $list;
 }