Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
9k views

PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string

What I want to do is to remove all accents and umlauts from a string, turning "lärm" into "larm" or "andré" into "andre". What I tried to do was to utf8_decode the string and then use strtr on it, but ...
6
votes
3answers
152 views

When to use strtr vs str_replace?

I'm having a hard time understanding when strtr would be preferable to str_replace or vice versa. It seems that it's possible to achieve the exact same results using either function, although the ...
5
votes
1answer
445 views

PHP: Problem converting characters with strtr

I've got the following code from php.net: $GLOBALS['normalizeChars'] = array( 'Š'=>'S', 'š'=>'s', 'Ð'=>'Dj','Ž'=>'Z', 'ž'=>'z', 'À'=>'A', 'Á'=>'A', 'Â'=>'A', 'Ã'=>'A', ...
1
vote
2answers
1k views

How do I do a strtr on UTF-8 in PHP?

I'm looking for a UTF-8 compatible strtr for PHP.
0
votes
1answer
60 views

How to rewrite video urls from /feed that have autoplay enabled

I ran into an interesting Issue today working on a Wall Feed Plugin. A majority of videos posted to the feed via youtube have autoplay enabled. "source": ...
0
votes
1answer
96 views

PHP Case-insensitive equivalent of strtr

do you know where I could find a case-insensitive version of strtr. strtr is overloaded, I am talking about the following one string strtr ( string $str , array $replace_pairs ) Thanks in advance! ...
0
votes
3answers
124 views

Regular expression to remove all characters except a-zA-Z0-9? [closed]

Possible Duplicate: Removing non-alphanumeric characters from a string May I know how to maintain only letters a-z, A-Z and digits 0-9 and remove all characters including &@#% and ...
0
votes
2answers
101 views

Strtr requires an array as the second argument?

I am calling code like strtr($somevars['thisvar'], "abc") Where $somevars['thisvar'] contains a string. And it's giving me Warning: strtr() [function.strtr]: The second argument is not an array ...
0
votes
1answer
144 views

OS-related strtr problem

I have this funtion that converts all special chars to uppercase: function uc_latin1($str) { if(!defined("LATIN1_UC_CHARS")) define("LATIN1_UC_CHARS", "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ"); ...