mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
15 lines
297 B
PHP
15 lines
297 B
PHP
--TEST--
|
|
Bug #81349: mb_detect_encoding misdetcts ASCII in some cases
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
|
|
echo(mb_detect_encoding("\xe4,a", ['ASCII', 'UTF-8', 'ISO-8859-1'])."\n");
|
|
echo(mb_detect_encoding("\xe4 a", ['ASCII', 'UTF-8', 'ISO-8859-1'])."\n");
|
|
|
|
?>
|
|
--EXPECT--
|
|
ISO-8859-1
|
|
ISO-8859-1
|