Tagged Questions
2
votes
1answer
535 views
vim: showing listchars changes the screen wrapping
I noted that when I show up the EOL listchars in a text the linebreaks are losen
p.e.
this is my text of this
message
becomes after set list ..eol
this is my text of this mess
age(EOL CHAR)
...
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 ...