kartik\helpers\Html::abbr PHP Method

abbr() public static method

Example: ~~~ echo Html::abbr('HTML', 'HyperText Markup Language') . ' is the best thing since sliced bread'; echo Html::abbr('HTML', 'HyperText Markup Language', true); ~~~
See also: http://getbootstrap.com/css/#type-abbreviations
public static abbr ( string $content, string $title, boolean $initialism = false, array $options = [] ) : string
$content string the abbreviation content
$title string the abbreviation title
$initialism boolean if set to true, will display a slightly smaller font-size.
$options array html options for the abbreviation
return string
    public static function abbr($content, $title, $initialism = false, $options = [])
    {
        $options['title'] = $title;
        if ($initialism) {
            static::addCssClass($options, 'initialism');
        }
        return static::tag('abbr', $content, $options);
    }