<?php
$data = "It is a long and a search for lorem ipsum will uncover many web sites still in their infancy.";
function getKeywordFrequency( $url ){
$html = $url;
$allWordsArray = str_word_count( strip_tags($html), 1);
$totalAllWordsArray = count($allWordsArray);
$wordCount = array_count_values($allWordsArray);
$keywords = [];
foreach ($wordCount as $word => $index) {
if (strlen($word) < 4) {
unset($wordCount[$word]);
}
}
arsort($wordCount);
$percentageCount = [];
foreach($wordCount as $words => $val){
$percentageCount[$words] = number_format(($val / $totalAllWordsArray) * 100, 2);
}
return $percentageCount;
}
print_r(getKeywordFrequency( $data));