serrg / text-cutter
Utility to cut long text according to specified conditions (to make preview text, for example)
dev-master
2015-11-22 11:34 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-10-26 18:28:09 UTC
README
Small utility to adaptively cut long description for short previews.
Usage
Firstly, create an instance of TextCutter class and specify cutting method and type of text decoration like this:
$textCutter = new TextCutter(TextCutter::METHOD_WHOLE_WORDS, TextCutter::DECORATION_ELLIPSIS);
Now you can use $textCutter->cut($text, $length) method to cut your text!