|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-08-04 12:11 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2016-08-04 12:11 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 03:00:01 2025 UTC |
Description: ------------ mb_convert_encoding fails to convert HTML-ENTITIES encoded chars to the following encodings: * BASE64 * Quoted-Printable * 7bit Test script: --------------- <?php foreach ([ 'BASE64', 'UUENCODE', 'HTML-ENTITIES', 'Quoted-Printable', '7bit', '8bit', ] as $encoding) { echo "$encoding: ", mb_convert_encoding('a', $encoding, 'HTML-ENTITIES'), PHP_EOL; } Expected result: ---------------- BASE64: YQ== UUENCODE: a HTML-ENTITIES: a Quoted-Printable: a 7bit: a 8bit: a Actual result: -------------- BASE64: JiN4NjE7 UUENCODE: a HTML-ENTITIES: a Quoted-Printable: a 7bit: a 8bit: a