Tagged Questions
1
vote
2answers
3k views
Setting encoding, newline, linebreaks, end-of-line (EOL) in PHP
For example, when I create a new file:
$message = "Hello!";
$fh = fopen(index.html, 'w');
fwrite($fh, $message);
fclose($fh);
How can I set it's encoding(utf-8 or shift-jis or euc-jp) and ...