Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keyword analysis in PHP

Tags:

For a web application I'm building I need to analyze a website, retrieve and rank it's most important keywords and display those.

Getting all words, their density and displaying those is relatively simple, but this gives very skewed results (e.g. stopwords ranking very high).

Basically, my question is: How can I create a keyword analysis tool in PHP which results in a list correctly ordered by word importance?

like image 573
Jeroen Avatar asked May 23 '12 14:05

Jeroen


People also ask

What is meant by keyword analysis?

Keyword analysis is the process of analyzing the keywords or search phrases that bring visitors to your website through organic and paid search. As such, keyword analysis is the starting point and cornerstone of search marketing campaigns.

What are keywords in PHP?

PHP has a set of keywords that are reserved words which cannot be used as function names, class names or method names. Prior to PHP 7, these keywords could not be used as class property names either: Keyword.

What is keyword traffic analysis?

Keyword traffic analysis can help you: Identify content topics that your audience will find informative and useful. Prioritize your content production efforts to target the most valuable, high commercial intent keywords. Structure your paid search campaigns to target relevant keywords with tightly organized ad groups.


1 Answers

Recently, I've been working on this myself, and I'll try to explain what I did as best as possible.

Steps

  1. Filter text
  2. Split into words
  3. Remove 2 character words and stopwords
  4. Determine word frequency + density
  5. Determine word prominence
  6. Determine word containers
    1. Title
    2. Meta description
    3. URL
    4. Headings
    5. Meta keywords
  7. Calculate keyword value

1. Filter text

The first thing you need to do is filter make sure the encoding is correct, so convert is to UTF-8:

iconv ($encoding, "utf-8", $file); // where $encoding is the current encoding 

After that, you need to strip all html tags, punctuation, symbols and numbers. Look for functions on how to do this on Google!

2. Split into words

$words = mb_split( ' +', $text ); 

3. Remove 2 character words and stopwords

Any word consisting of either 1 or 2 characters won't be of any significance, so we remove all of them.

To remove stopwords, we first need to detect the language. There are a couple of ways we can do this: - Checking the Content-Language HTTP header - Checking lang="" or xml:lang="" attribute - Checking the Language and Content-Language metadata tags If none of those are set, you can use an external API like the AlchemyAPI.

You will need a list of stopwords per language, which can be easily found on the web. I've been using this one: http://www.ranks.nl/resources/stopwords.html

4. Determine word frequency + density

To count the number of occurrences per word, use this:

$uniqueWords = array_unique ($keywords); // $keywords is the $words array after being filtered as mentioned in step 3 $uniqueWordCounts = array_count_values ( $words ); 

Now loop through the $uniqueWords array and calculate the density of each word like this:

$density = $frequency / count ($words) * 100; 

5. Determine word prominence

The word prominence is defined by the position of the words within the text. For example, the second word in the first sentence is probably more important than the 6th word in the 83th sentence.

To calculate it, add this code within the same loop from the previous step:'

$keys = array_keys ($words, $word); // $word is the word we're currently at in the loop $positionSum = array_sum ($keys) + count ($keys); $prominence = (count ($words) - (($positionSum - 1) / count ($keys))) * (100 /   count ($words)); 

6. Determine word containers

A very important part is to determine where a word resides - in the title, description and more.

First, you need to grab the title, all metadata tags and all headings using something like DOMDocument or PHPQuery (dont try to use regex!) Then you need to check, within the same loop, whether these contain the words.

7. Calculate keyword value

The last step is to calculate a keywords value. To do this, you need to weigh each factor - density, prominence and containers. For example:

$value = (double) ((1 + $density) * ($prominence / 10)) * (1 + (0.5 * count ($containers))); 

This calculation is far from perfect, but it should give you decent results.

Conclusion

I haven't mentioned every single detail of what I used in my tool, but I hope it offers a good view into keyword analysis.

N.B. Yes, this was inspired by the today's blogpost about answering your own questions!

like image 77
Jeroen Avatar answered Nov 13 '22 16:11

Jeroen