I am working on a project where I have to find out the keyword density of thepage on the basis of URL of that page. I googled a lot but no help and scripts were found, I found a paid tool http://www.selfseo.com/store/_catalog/php_scripts/_keyword_density_checker_php_script
But I am not aware actually what "keyword Density of a page" actually means? and also please tell me how can we create a PHP script which will fetch the keyword density of a web page.
Thanks
If the given keyword is "elephant walks", the keyword density would be how often the term "elephant walks" appears on any given web page in relation to other text. As VirtuosiMedia said, this is (broadly) useless information.
To measure it, you must strip all mark up from the text, count the words while keeping track of how often the keyword(s) appear.
At that point, you will know, xx.xx % of all words in this text are keywords. xx.xx % of the time , the key word(s) are used next to each other, therefore my keyword density for "elephant walks" is xx
Again, the only reason this is useful is to demonstrate pattern matching and string functions in php.
Keyword density just means the percentage that the keywords appear in the content versus rest of the text. In general, it's also a fairly useless metric for SEO. I wouldn't bother building a script for it as you'd be better off concentrating on other metrics. You might find this reference useful.
keyword density is roughly:
(no. of times keyword appeared on the page)/(total no. of other keywords)
"Keyword density" is simply the frequency that the word occurs given as a percentage of the total number of words. The following PHP code will output the density of each word in a string,
$str
. It demonstrates that keyword density is not a complex calculation, it can be done in a few lines of PHP:Example output:
To fetch the content of a webpage you can use file_get_contents (or cURL). As an example, the following PHP code lists all keywords above 1% density on this webpage:
I hope this helps.
Or you can try this:
http://code.eyecatch-up.de/?p=155Update: Relocated the class to http://code.google.com/p/php-class-keyword-density-check/
above code returns:
works with local and remote files.