<meta name="keywords" content="Newsroom<?php
$html = file_get_contents($_SERVER['SCRIPT_FILENAME']); // sayfa dosya adını alır misal index.html siz bunu düzenleyip farklı sayfa üzerinden veya başka site üzerinden'de alabilirsiniz.
$text = strip_tags($html);
$text = htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
$text = preg_replace('/[^a-zA-Z0-9\s]/', '', $text);
$text = strtolower($text);
$text = preg_replace('/\s+/', ' ', $text);
$keywordsArray = explode(' ', $text);
$keywordCounts = array_count_values($keywordsArray);
arsort($keywordCounts);
$topKeywords = array_slice($keywordCounts, 0, 50); // kaç adet kelime eklensin ben 50 yaptım.
echo htmlspecialchars(implode(', ', array_keys($topKeywords)), ENT_QUOTES, 'UTF-8');
?>">Örnek Resim
