PHP Function List
strtr: doesn't exist. Closest matches:
- strtr
- strstr
- stristr
- strrev
- mb_strstr
- strtok
- strchr
- mb_stristr
- strtoupper
- strtolower
- strrpos
- strrchr
- strpbrk
- istrait
- sqrt
- sort
- stat
- strftime
- strptime
- strripos
Site Search Results
-
Diese Funktion gibt eine Kopie von str zurück, in der alle Vorkommen jedes Zeichens von from in das korrespondierende Zeichen in to umgewandelt wurden.
-
If given three arguments, this function returns a copy of str where all occurrences of each (single-byte) character in from have been translated to the corresponding ...
-
Si trois arguments sont utilisés, strtr() retourne la chaîne str après avoir remplacé chaque caractère (de un octet) du paramètre from par son équivalent dans le ...
-
Esta função retorna uma cópia de str, traduzindo todas as ocorrências de cada caractere em from para o caractere correspondente em to.
-
array_flip (PHP 4, PHP 5) array_flip — Vertauscht alle Schlüssel mit ihren zugehörigen ... array_flip ($trans); $original = strtr ($str, $trans);?>
-
htmlspecialchars_decode - Manual$translation = array_flip (get_html_translation_table (HTML_SPECIALCHARS, $style)); if($style === ENT_QUOTES){ $translation ['''] = '\''; } return strtr ($string, ...
-
false !== strpos ($code, "\r") && $code = strtr (str_replace ("\r\n", "\n", $code), "\r", "\n"); $braces = substr_count ($code, "\n"); } $code = ob_get_clean();
-
function uc_latin1 ($str) { $str = strtoupper (strtr ($str, LATIN1_LC_CHARS, LATIN1_UC_CHARS)); return strtr ($str, array("ß" => "SS"));}?>
-
The following function utilizes array_combine and strtr to produce the expected output, and I believe it is the most efficient way to perform the desired string replacement without ...
-
$trans_table = array_flip (get_html_translation_table ( HTML_SPECIALCHARS, $quote_style )); $trans_table ['''] = "'"; return ( strtr ( $given_html, $trans_table ) );

Other forms of search
To search the string "strtr:" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
