Next Sep 29 Previous
Item 547240
What does the following code print in your browser.
<?php header("Content-type: text/html; charset=windows-1252"); echo "'网站' in Chinese translates to 'web site'."; ?>
A: Garbled data because the multibyte UTF-8 characters are rendered as single byte windows-1252 codepage characters.
B: '网站' in Chinese translates to 'web site'.
C: '网站' in Chinese translates to 'web site'.
D: '□□' in Chinese translates to 'web site'.