Why are Scandinavian characters converted to UTF-8?

tomy56

New Member
I am trying to create an array with Danish characters - why are the characters converted to UTF-8 when output by PHP? Apache's httpd.conf? PHP.ini?\[code\]// Fails$chars = array_merge(range("A","Z"),str_split("???"));// Observed result: (array) ABCDEFGHIJKLMNOPQRSTUVWXYZ?????
 
Back
Top