Where I could find a case-insensitive version of strtr? 开发者_开发问答 strtr is overloaded, I am talking about the following one
I am calling code like strtr($somevars[\'thisvar\'], \"abc\") Where $somevars[\'thisvar\'] contains a string.
I\'ve got the following code from php.net: $GLOBALS[\'normalizeChars\'] = array( \'Š\'=>\'S\', \'š\'=>\'s\', \'Ð\'=>\'Dj\',\'Ž\'=>\'Z\', \'ž\'=>\'z\', \'À\'=>\'A\', \'Á\'=>
I have a many to many relationship within my database. For example I have a USER table, a ROLE Table, and USERINROLE table. I have a search on my website that needs to find users in specified roles. F