2017 © Pedro Peláez
 

library page-analyzer

Calculate frequency of words for html content for SEO

image

prostoroman/page-analyzer

Calculate frequency of words for html content for SEO

  • Tuesday, July 18, 2017
  • by prostoroman
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Page analyzer

Calculate frequency of words in html content (input string, file or URL)., (*1)

$analyzer = new PageAnalyzer\Analyzer();
$stats = $analyzer->analyse('http://www.lipsum.com/');
var_dump($stats);

Options

Example, how to ignore content in noindex, exclude stop words from analysis and check presence in particular tags used by search engine algorythms in rankinkg., (*2)

$options = [
  'ignoreNoindex' => true,
  'stopWords' => ['в', 'и', 'от', 'для'],
  'checkTags' => ['title', 'keywords', 'description', 'a', 'b,strong', 'h1,h2,h3,h4,h5,h6']
];
$analyzer = new PageAnalyzer\Analyzer(['stopWords' => $stopWords]);
var_dump($stats);

Please check: the demo here, (*3)

Would appreciate any contributions. Thank you!, (*4)

The Versions

18/07 2017

dev-master

9999999-dev https://github.com/prostoroman/page-analyzer

Calculate frequency of words for html content for SEO

  Sources   Download

The Requires

 

seo word frequency

09/07 2017

dev-dev-master

dev-dev-master https://github.com/prostoroman/page-analyzer

Calculate frequency of words for html content for SEO

  Sources   Download

The Requires

 

The Development Requires

seo word frequency