views:

2012

answers:

2

I'm using Zend Studio for Eclipise on Mac, and it seems to keep setting all files to have and encoding of 'Mac Roman'. This becomes problematic when I save the files, as they all need to be UTF-8.

I know how to change the encoding to UTF-8 on a file by file basis, but I was wondering if I could set this project wide?

+2  A: 

Eclipse-Wide: Window->Preferences->Appearence->Workspace Project-Wide: Rightclick on Project->Properties Filewide: Rightclick on File->Properties

SkaveRat
A: 

Just remember, php does not actually support utf-8 encoded sourcefiles. When creating strings in a utf-8 encoded file, php will just see 2 static bytes per character.

Try running the following with either utf-8 or ISO-8859-1 enconding. strlen() will report different lengths depending on encoding.

<?php
$string = "äüö";
echo (strlen($string));
?>
MGriesbach
That's irrelevant. PHP can handle UTF-8 (as long as the damn Eclipse doesn't screw it up), you just need to use mb_* functions instead.
porneL