나는, 캐릭터마다 3 자 분할이 코드를했습니다 잘 작동하지만 악센트가 엉망이됩니다PHP를 str_split() 액센트 모든 n 문자
$splitted_array = str_split('waderòrò',3);
하지만
print_r($splitted_array); >> Array ([0] => wad [1] => er▯ [2] => ▯r▯ [3] => ▯)
를 출력 비슷한 질문이 이미 제기 된 것을 알고 있지만이 질문은 저를 도와주지 못했습니다. ucwords and french accented lettres encoding. mb_split를 시도했지만 성공하지 못했습니다. 올바른 정규식을 찾을 수 없기 때문에 ... 올바른 코드는 무엇입니까?
utf8-encode 기능을 사용하여 array_map을 사용해 보셨습니까? –
시도 :'function myfunction ($ v) {utf8_encode ($ v);} print_r (array_map ("myfunction", $ splitted_array)'모든 값이 작동하지 않는다 ... – codeispoetry