|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-16 11:17 UTC] misiek at dione dot ids dot pl
[2005-11-16 12:04 UTC] misiek at dione dot ids dot pl
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 19:00:02 2025 UTC |
Description: ------------ I'm testing with php5-STABLE-200511160740. [arekm@pepe php5-STABLE-200511160740]$ ./sapi/cli/php ~/a.php =?ISO-8859-2?Q?Mi=C5=9Bkiewicz?= [arekm@pepe php5-STABLE-200511160740]$ ./sapi/cli/php --version PHP 5.0.6-dev (cli) (built: Nov 16 2005 12:01:44) Copyright (c) 1997-2004 The PHP Group Zend Engine v2.0.5, Copyright (c) 1998-2004 Zend Technologies It produced: =?ISO-8859-2?Q?Mi=C5=9Bkiewicz?= which is wrong. The same test using: [root@gucio ~]# php4 --version PHP 4.4.2-dev (cli) (built: Nov 15 2005 09:55:25) Copyright (c) 1997-2004 The PHP Group Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies with eAccelerator v0.9.3, Copyright (c) 2004-2004 eAccelerator, by eAccelerator [root@gucio ~]# php4 a.php =?ISO-8859-2?Q?Mi=B6kiewicz?= gives correct result: =?ISO-8859-2?Q?Mi=B6kiewicz?= Reproduce code: --------------- Test code is: <?php $user_name = "Miśkiewicz"; // iso8859-2 text mb_internal_encoding("ISO-8859-2"); echo mb_encode_mimeheader($user_name, "ISO-8859-2", "Q") . "\n"; ?> mutt users can later verify correctness of result by simply putting it into mail like: [arekm@iarm ~]$ cat a.txt From me Thu Sep 29 09:32:30 2005 From: someone <x@y.pl> To: a@b.pl Subject: =?ISO-8859-2?Q?Mi=C5=9Bkiewicz?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test and doing mutt -R -f a.txt Expected result: ---------------- =?ISO-8859-2?Q?Mi=B6kiewicz?= Actual result: -------------- =?ISO-8859-2?Q?Mi=C5=9Bkiewicz?=