Question
Few Drupal 8's utility functions and components.
Drupal Utility list
ArgumentsResolver, ArgumentsResolverInterface, Bytes, Color, Crypt, DiffArray, Environment, Html, Image, NestedArray, Number, OpCodeCache, Random, Rectangle, SafeMarkup, SortArray, Tags, Timer, ToStringTrait, Unicode, UrlHelper, UserAgent, Variable, Xss
From : \Drupal\Component\Utility\. Example : \Drupal\Component\Utility\UrlHelper
Trim / Truncate a text
$truncate_string = \Drupal\Component\Utility\Unicode::truncate($string, 100, TRUE , TRUE, 1);
// $string, $max_length, $wordsafe = FALSE, $add_ellipsis = FALSE, $min_wordsafe_length = 1
Make a HTML correction.
$text_new = \Drupal\Component\Utility\Html::normalize($text);
//
Add new comment