forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Bug #67988 htmlspecialchars() does not respect default_charset …
…specified by ini_set.
- Loading branch information
Yasuo Ohgaki
committed
Feb 3, 2015
1 parent
36f7341
commit 436ba1c
Showing
3 changed files
with
35 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--TEST-- | ||
Bug #67988 (htmlspecialchars() does not respect default_charset specified by ini_set) | ||
--INI-- | ||
default_charset=UTF-8 | ||
--FILE-- | ||
<?php | ||
ini_set('default_charset', 'cp1252'); | ||
|
||
var_dump(ini_get('default_charset')); | ||
var_dump(ini_get('internal_encoding')); | ||
var_dump(ini_get('input_encoding')); | ||
var_dump(ini_get('output_encoding')); | ||
|
||
var_dump(htmlentities("\xA3", ENT_HTML5)); | ||
var_dump(htmlentities("\xA3", ENT_HTML5, 'cp1252')); | ||
|
||
var_dump(bin2hex(html_entity_decode("£", ENT_HTML5))); | ||
var_dump(bin2hex(html_entity_decode("£", ENT_HTML5, 'cp1252'))); | ||
--EXPECT-- | ||
string(6) "cp1252" | ||
string(0) "" | ||
string(0) "" | ||
string(0) "" | ||
string(7) "£" | ||
string(7) "£" | ||
string(2) "a3" | ||
string(2) "a3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters