How to make keywords from sentence using PHP | YourSite

How to make keywords from sentence using PHP

In this blog I will show you how to make keywords from sentence using PHP.

 

// functions
function php_slug($string)  
 {  
      $slug = preg_replace('/[^a-z0-9-]+/', '-', trim(strtolower($string)));  
      return $slug;  
 }
 
 
// Keyword maker
function makeKeywords($sentence)
{ 

$sentence =  strtolower($sentence);

// Remove Special Symbols from sentence
$removeSpecialSymbol = array("  ", "," ,"." ,";" ,":", "\"", "/", "'", "“","”","(",")", "!","?");
$sentence = str_replace($removeSpecialSymbol, "", $sentence );
 

// make unique array
$words = explode(' ', $sentence); 
$uniqueWords = array_unique($words); 
  

// remove set of words from sentence
$wordsToAvoid = array("its", "a", "an", "in", "of", "to", "we", "you", "be", "was", "ware", "may", "could", "should", "would", "the", "some", "shall", "show", "will", "have", "has", "been", "that", "with", "this", "that", "when", "how", "then", "than", "into", "for");

$newArray = array_diff($uniqueWords, $wordsToAvoid); 
$sentence = implode(', ',$newArray);
 

 return $sentence;
}

 

🚀 More Blogs You Might Like

Explore more articles and keep learning

What is Bounce Rate in SEO? Complete Guide for Beginners
search-engine-optimization
What is Bounce Rate in SEO? Complete Guide for Beginners

Learn what bounce rate is in SEO, how it is calculated, why it matters, common causes of high bounce rates, an...

👁 2 2026-05-24
Read More →
Comprehensive Interviewer Guide - Detailed Article
skill
Comprehensive Interviewer Guide - Detailed Article

Learn how to conduct effective interviews with this comprehensive interviewer guide. Explore hiring strategies...

👁 19 2026-05-22
Read More →
Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)
skill
Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)

Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)...

👁 25 2026-05-19
Read More →
How to Grow Your Business Mindset Step by Step
skill
How to Grow Your Business Mindset Step by Step

Learn how to develop and grow a successful business mindset step by step. Discover entrepreneurial thinking, p...

👁 46 2026-05-09
Read More →