International characters
Brought to you by:
thomas_-_s
Notepad plugin v1.0.2 messes international characters in files when processing php files, no matter what encodig the file is in (tried ANSI and UTF without BOM).
All php indenters are flawed. If the same files is parsed using some other random indenters (intended for other languages, like C or COBOL) everything works as expected.
My guess is that system call for php as executable is the problem here.
Example code:
$str = "El artículo ha sido añadido a su carro de compra.";
Result:
$str = "El artÃculo ha sido añadido a su carro de compra.";
Anonymous