Im trying to compare words for equality, and the case [upper and lower] is irrelevant. However PHP does not seem to agree!
Any ideas as to how to force PHP to ignore the case of words while comparing them ??
Any help appreciated!
$arr_query_words = array( "hat","Cat","sAt","maT" );
// for each element in $arr_query_words -
for( $j= 0; $j < count( $arr_query_words ); $j++ ){
// Split the $query_string on "_" or "%" :
$story_body = str_replace( $arr_query_words[ $j ],
'<span style=" background-color:yellow; ">' . $arr_query_words[ $j ] . '</span>',
$story_body );
// --- This ONLY replaces where the case [upper or lower] is identical ->
}
Is there a way to carry out the replace even if the case is different???
Apologies for the vagueness of the original question.
Donal