Answer the question
In order to leave comments, you need to log in
[PHP] How to generate alphabet for different languages?
It is necessary to display the alphabets of different languages in the correct sequence. There is a working code for Russian and English. Can you suggest something similar for German, Italian, French and any others?
English:
foreach(range('a','z') as $a) {
echo $a;
}
for ($i = 224; $i <= 255; $i++) {
echo iconv('CP1251', 'UTF-8', chr($i));
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question