mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
22 lines
539 B
PHP
22 lines
539 B
PHP
--TEST--
|
|
htmlentities() should not be influenced by mb_internal_encoding()
|
|
--INI--
|
|
default_charset=
|
|
internal_encoding=
|
|
mbstring.internal_encoding=ISO-8859-1
|
|
--SKIPIF--
|
|
<?php
|
|
extension_loaded("mbstring") or die("skip mbstring not available\n");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(htmlentities('äöü'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
PHP Deprecated: PHP Startup: Use of mbstring.internal_encoding is deprecated in Unknown on line 0
|
|
|
|
Deprecated: PHP Startup: Use of mbstring.internal_encoding is deprecated in Unknown on line 0
|
|
string(18) "äöü"
|