Changes between Initial Version and Version 1 of Ticket #10373, comment 25
- Timestamp:
- 10/24/2015 03:41:08 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10373, comment 25
initial v1 1 1 `echo number_format( 1000, 0, ',', "\xA0" );` returns on PHP 5.6.14 and 5.5.40 `1�000` for me. Looking at http://www.fileformat.info/info/unicode/char/00a0/index.htm and it seems like the replacement should be "\xC2\xA0". 2 3 Edit: Looking at `SimplePie_Misc::windows_1252_to_utf8()` and it looks like "\xA0" is Windows-1252 and "\xC2\xA0" is UTF-8.