示例#1
0
 /**
  * Limit the number of words in a string.
  *
  * @param string $value
  * @param int $words
  * @param string $end
  * @return string 
  * @static 
  */
 public static function words($value, $words = 100, $end = '...')
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::words($value, $words, $end);
 }