php iconv translit删除重音:不使用magento制作徽标

时间:2016-02-20 09:40:19

标签: php magento

我想替换一些不同意的char同意,除了在产品属性上显示的magento制造徽标之外。 这是我在manufacturer_center.phtml上的代码,我在这里编写用于清除不需要的特殊字符的函数,该函数用于删除特殊字符,但不适用于像“â,é”这样的字符,我需要将其替换为“a,e”:< / p>

function manu_title_clean($text,$strict = false) {
$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d.]+~u', '-', $text);

// trim
$text = trim($text, '-');
setlocale(LC_CTYPE, 'en_GB.utf8');
// transliterate
if (function_exists('iconv')) {
   $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
}

// lowercase
$text = strtolower($text); 
// remove unwanted characters
$text = preg_replace('~[^-\w.]+~', '', $text);
if (empty($text)) {
   return 'empty_$';
}
if ($strict) {
    $text = str_replace(".", "_", $text);
}
return $text;
}

2 个答案:

答案 0 :(得分:0)

我已经通过

解决了这个问题
function manu_title_clean($text,$strict,$str = false) {
$text = preg_replace('~[^\\pL\d.]+~u', '-', $text);
// trim
$text = trim($text, '-');
setlocale(LC_CTYPE, 'en_GB.utf8');
$unwanted_array = array(    'Š'=>'S', 'š'=>'s', 'Ž'=>'Z', 'ž'=>'z', 'À'=>'A', 'Á'=>'A', 'Â'=>'A', 'Ã'=>'A', 'Ä'=>'A', 'Å'=>'A', 'Æ'=>'A', 'Ç'=>'C', 'È'=>'E', 'É'=>'E',
                        'Ê'=>'E', 'Ë'=>'E', 'Ì'=>'I', 'Í'=>'I', 'Î'=>'I', 'Ï'=>'I', 'Ñ'=>'N', 'Ò'=>'O', 'Ó'=>'O', 'Ô'=>'O', 'Õ'=>'O', 'Ö'=>'O', 'Ø'=>'O', 'Ù'=>'U',
                        'Ú'=>'U', 'Û'=>'U', 'Ü'=>'U', 'Ý'=>'Y', 'Þ'=>'B', 'ß'=>'Ss', 'à'=>'a', 'á'=>'a', 'â'=>'a', 'ã'=>'a', 'ä'=>'a', 'å'=>'a', 'æ'=>'a', 'ç'=>'c',
                        'è'=>'e', 'é'=>'e', 'ê'=>'e', 'ë'=>'e', 'ì'=>'i', 'í'=>'i', 'î'=>'i', 'ï'=>'i', 'ð'=>'o', 'ñ'=>'n', 'ò'=>'o', 'ó'=>'o', 'ô'=>'o', 'õ'=>'o',
                        'ö'=>'o', 'ø'=>'o', 'ù'=>'u', 'ú'=>'u', 'û'=>'u', 'ý'=>'y', 'þ'=>'b', 'ÿ'=>'y' );
   $str = strtr( $text, $unwanted_array );
   $text = strtolower($str);
   $text = preg_replace('~[^-\w.]+~', '', $text);
   if (empty($text)) {
   return 'empty_$';
    }
   if ($strict) {
    $text = str_replace(".", "_", $text);
    }
    return $text;

    }

答案 1 :(得分:0)

结果似乎取决于iconv的版本(libc6 2.24中的版本停止工作)。