maxodrom/yii2-seo

Yii2 SEO compoments

1.1.2 2018-06-06 19:47 UTC

This package is not auto-updated.

Last update: 2024-04-09 23:36:37 UTC


README

Yii2 SEO components is a package with some useful classes which are provided with frequently used methods to work with and processing SEO texts.

SEO image

Русская документация

SeoText class

Provides useful methods for source text processing and gathering statistical info about processed text.

use maxodrom\yii2seo\components\SeoText;

// instantiate new SeoText object
$seoText = new SeoText($model->textField);

// get total words in our text
$totalWords =  $seoText->getWordsCount();

// get total characters count (including different spaces chars)
$totalCharacters = $seoText->getTotalCharactersCount();

// get only word's characters count
$wordCharacters = $seoText->getCharactersCount();

// get all spaces count 
$totalSpaces = $seoText->getSpacesCount();