Generate seo words through chat gpt script
function generate_keywords($text) {
$text = strtolower($text);
$text = preg_replace("/[^a-zA-Z 0-9]+/", " ", $text);
$text = trim($text);
$words = explode(" ", $text);
$words = array_unique($words);
return implode(", ", $words);
}
Post a Comment