3

我想用英文字母替换句子中的每个土耳其字母,我尝试以下功能:

$title_result = "Türkiye'nin en iyi oranlari ile Lider Bahis Sitesi";
$turkish = array("ı", "ğ", "ü", "ş", "ö", "ç");//turkish letters
$english   = array("i", "g", "u", "s", "o", "c");//english cooridinators letters

$final_title = str_replace($turkish, $english, $title_result);//replace php function
print_r($turkish);//when printing this i got: Array ( [0] => ı [1] => ğ [2] => ü [3] => ş [4] => ö [5] => ç ) 
return $final_title;

我认为土耳其字符的问题,但我不知道如何让 php 正确读取这些字符以正确替换。我需要你的建议吗??

4

2 回答 2

4

您是否注意到您正在打印$turkish而不是替换的字符串(即$final_title)?您会看到一个数组,因为您正在打印该数组。如果您在浏览器上单独打印数组,您会看到那些乱七八糟的字符,可能是因为输出不是 UTF-8 编码的。但是,如果您这样做(注意元标记):

<meta charset="utf-8" />
<?php
$title_result = "Türkiye'nin en iyi oranlari ile Lider Bahis Sitesi";
$turkish = array("ı", "ğ", "ü", "ş", "ö", "ç");//turkish letters
$english   = array("i", "g", "u", "s", "o", "c");//english cooridinators letters

$final_title = str_replace($turkish, $english, $title_result);//replace php function
print_r($turkish);

您将正确地看到字符。但这不是问题。str_replace() 工作正常。它应该可以正常工作。

于 2013-10-25T06:45:10.677 回答
4

大信呢,我的解决方案是:

function url_make($str){
    $before = array('ı', 'ğ', 'ü', 'ş', 'ö', 'ç', 'İ', 'Ğ', 'Ü', 'Ö', 'Ç'); // , '\'', '""'
    $after   = array('i', 'g', 'u', 's', 'o', 'c', 'i', 'g', 'u', 'o', 'c'); // , '', ''

    $clean = str_replace($before, $after, $str);
    $clean = preg_replace('/[^a-zA-Z0-9 ]/', '', $clean);
    $clean = preg_replace('!\s+!', '-', $clean);
    $clean = strtolower(trim($clean, '-'));

return $clean;
}

echo url_make('Bu Çocuğu Kim İşe Aldı'); // bu-cocugu-kim-ise-aldi
echo url_make('Birisi"nin adı'); // birisinin-adi
echo url_make("I'll make all happen"); // ill-make-all-happen

要产生 i-ll-make-all-happen 而不是 ill-make-all-happen,只需在 $before 的列表中添加 '\'' 和 '"',然后在 after 的列表中添加 ' ' 和 ' '

于 2017-10-24T17:27:40.243 回答