
<?php
$string = "Small brown bug bit a small brown dog on his small brown nose";
$count;
//Converts the string into lowercase
$string = strtolower($string);
//Split the string into words using built-in function
$words = explode(" ", $string);
print("Duplicate words in a given string : <br>");
for($i = 0; $i < count($words); $i++) {
$count = 1;
for($j = $i+1; $j < count($words); $j++) {
if($words[$i] == $words[$j]) {
$count++;
//Set words[j] to 0 to avoid printing visited word
$words[$j] = "0";
}
}
//Displays the duplicate word if count is greater than 1
if($count > 1 && $words[$i] != "0"){
print($words[$i]);
print("<br>");
}
}
?>Duplicate words in a given string :
small
brown Difficulty levels, time estimates, copy-paste starter prompts, and the exact skills each project teaches —…
Google Chrome has dominated web browsing for over a decade with 71.77% global market share.…
Perplexity just made its AI-powered browser, Comet, completely free for everyone on October 2, 2025.…
You've probably heard about ChatGPT Atlas, OpenAI's new AI-powered browser that launched on October 21,…
Perplexity Comet became free for everyone on October 2, 2025, bringing research-focused AI browsing to…
ChatGPT Atlas launched on October 21, 2025, but it's only available on macOS. If you're…