BookStack\Book::getExcerpt PHP Méthode

getExcerpt() public méthode

Get an excerpt of this book's description to the specified length or less.
public getExcerpt ( integer $length = 100 ) : string
$length integer
Résultat string
    public function getExcerpt($length = 100)
    {
        $description = $this->description;
        return strlen($description) > $length ? substr($description, 0, $length - 3) . '...' : $description;
    }