PHP未定义的字符?在输出中

时间:2013-05-23 16:02:19

标签: php string ascii

我的问题是我不知道输出中的那些字符在哪里,任何人都可以解释我为什么在我的字符串中是那些字符以及我要做些什么来取消它们?

该功能用于将'ä','ö','ü'改为'ae','oe','ue'

<?php

// str      | string argument
// needle   | searched char
// val      | value
// pos      | default 0 at start at offset zero 
// pos      | momently just working with default offset
function changeLetter($str, $needle, $val, $pos = 0) {
    $mstr = "";
    while (isset($str[$pos])) {            
        if (ord($str[$pos]) == ord($needle)) {
            $mstr .= $val;
            $pos++;
        } else {
            $mstr .= $str[$pos];
            $pos++;
        }
    }
    return $mstr;
}

echo changeLetter("täp@tecmax.com", 'ä', 'ae') . '<br>';
echo changeLetter("tüp@tecmax.com", 'ü', 'ue') . '<br>';
echo changeLetter("töp@tecmax.com", 'ö', 'oe') . '<br>';


//echo changeLetter("täp@tecmax.com", 'ä', 'ae', 3) . '<br>';   
?>

输出:

taep@tecmax.com

tuep@tecmax.com

toep@tecmax.com

2 个答案:

答案 0 :(得分:0)

以下是您可以做的事情:

echo changeLetter("täp@tecmax.com", 'ä', 'ae'), PHP_EOL;
echo changeLetter("tüp@tecmax.com", 'ü', 'ue'), PHP_EOL;
echo changeLetter("töp@tecmax.com", 'ö', 'oe'), PHP_EOL;

输出

taep@tecmax.com
tuep@tecmax.com
toep@tecmax.com

使用的功能

function changeLetter($str, $needle, $val, $pos = 0) {
    $next = function ($str, &$pos) {
        if (! isset($str[$pos]))
            return false;
        $char = ord($str[$pos]);
        if ($char < 128) {
            return $str[$pos ++];
        } else {
            if ($char < 224) {
                $bytes = 2;
            } elseif ($char < 240) {
                $bytes = 3;
            } elseif ($char < 248) {
                $bytes = 4;
            } elseif ($char = 252) {
                $bytes = 5;
            } else {
                $bytes = 6;
            }
            $str = substr($str, $pos, $bytes);
            $pos += $bytes;
            return $str;
        }
    };
    $mstr = "";
    while(($chr = $next($str, $pos)) !== false) {
        $mstr .= $chr == $needle ? $val : $chr;
    }
    return $mstr;
}

答案 1 :(得分:-1)

您需要更改文件编码,或使用&auml;&uuml;&ouml;代替äüö