OS X vs UTF-8

UNC

B1G-Software-Kunde
Vielleicht hat ja eine andere Person hier auch einen Mac... Wenn ja: Neue Datei erstellen (Encoding: UTF-8 ) mit diesem Inhalt:
PHP:
$handle = fopen('äöü.txt','w');
fwrite($handle, 'äöü');
Ich habe ein sehr "lustiges" Resultat bekommen ;(
(Bild 14.png)
//EDIT: Auch ganz lustig:
PHP:
$handle = fopen('ääöüéàèéäöüäé.txt','w');
fwrite($handle, 'äöü');
(Bild 15.png)
 

Attachments

  • Bild 14.png
    Bild 14.png
    3 KB · Views: 186
  • Bild 15.png
    Bild 15.png
    5.5 KB · Views: 186
Last edited:
Back
Top