Jump to content

Case Sensitive


elmas156

Recommended Posts

I need to make the following code work without case sensitivity.  For example, if this was processed, I would like for $message to be changed from

 

"Stupid is not a nice word. Ugly is not nice either."

 

to

 

"unintelligent is not a nice word. unattractive is not nice either."

 

For my purposes, I don't care that the capitalization changes, I just need the $goodwords to be replaced with the $badwords regardless of capitalization.

 

Any ideas here?

 

<?php

$message = "Stupid is not a nice word. Ugly is not nice either.";

$badwords = array("stupid", "ugly");
$goodwords = array("unintelligent", "unattractive" );

$message = str_replace($badwords, $goodwords, $message);

?>

Link to comment
https://forums.phpfreaks.com/topic/224672-case-sensitive/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.