mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
1e02099e6a
Moves the usage of `mb_internal_encoding()` to INI section for the tests not testing the encoding/function itself, but the other mbstring/iconv functions.
16 lines
308 B
PHP
16 lines
308 B
PHP
--TEST--
|
|
htmlentities() test 6 (mbstring / ISO-8859-15)
|
|
--INI--
|
|
output_handler=
|
|
internal_encoding=ISO-8859-15
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
print mb_internal_encoding()."\n";
|
|
var_dump(htmlentities("\xbc\xbd\xbe", ENT_QUOTES, ''));
|
|
?>
|
|
--EXPECT--
|
|
ISO-8859-15
|
|
string(20) "ŒœŸ"
|