Reputation: 13682
My php.ini file contains the following:
[iconv]
;iconv.input_encoding = ISO-8859-1
;iconv.internal_encoding = ISO-8859-1
;iconv.output_encoding = ISO-8859-1
I want my site to be fully utf-8 enabled. Any reason why I shouldn't just set those to UTF-8
?
Upvotes: 2
Views: 4461
Reputation: 1723
The iconv lib does not depend on your site but on your OS standard encoding. Take a look here. Anyway, if you do not plan to use iconv, you do not need to touch these.
Upvotes: 1