"Anahtar kelime yoğunluğu" kelimesinin kelimelerin toplam sayısının bir yüzdesi olarak verilmiştir meydana bu sadece frekansıdır. Bir dize Aşağıdaki PHP kodu çıktısı her kelimenin yoğunluğu, $str
. Bu anahtar kelime yoğunluğu, bu PHP birkaç satır yapılabilir karmaşık bir hesaplama olmadığını göstermektedir:
<?php
$str = "I am working on a project where I have to find out the keyword density of the page on the basis of URL of that page. 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.";
// str_word_count($str,1) - returns an array containing all the words found inside the string
$words = str_word_count(strtolower($str),1);
$numWords = count($words);
// array_count_values() returns an array using the values of the input array as keys and their frequency in input as values.
$word_count = (array_count_values($words));
arsort($word_count);
foreach ($word_count as $key=>$val) {
echo "$key = $val. Density: ".number_format(($val/$numWords)*100)."%<br/>\n";
}
?>
Örnek çıktı:
of = 5. Density: 8%
a = 4. Density: 7%
density = 3. Density: 5%
page = 3. Density: 5%
...
Eğer file_get_contents kullanabileceğiniz bir web sayfasının içeriğini almak için (veya cURL). Örnek olarak, aşağıdaki PHP kodu bu web sayfasında% 1 yoğunluğunun üstünde tüm anahtar kelimeleri listeler:
<?php
$str = strip_tags(file_get_contents("http://stackoverflow.com/questions/819166"));
$words = str_word_count(strtolower($str),1);
$word_count = array_count_values($words);
foreach ($word_count as $key=>$val) {
$density = ($val/count($words))*100;
if ($density > 1)
echo "$key - COUNT: $val, DENSITY: ".number_format($density,2)."%<br/>\n";
}
?>
Bu yardımcı olur umarım.