ID: 28348
Updated by: [EMAIL PROTECTED]
Reported By: shy at weblab dot pt
-Status: Open
+Status: Bogus
Bug Type: Output Control
PHP Version: 4.3.4
New Comment:
In general, PHP is not Unicode savvy. You should use
something like mb_strlen() to discover the length of
your string and do the math yourself to create the
correctly padded string. i.e.
str_repeat('.', max(0, 10 - mb_strlen('Nao')));
Previous Comments:
------------------------------------------------------------------------
[2004-05-10 13:19:50] shy at weblab dot pt
Description:
------------
In a utf-8 encoded page str_pad counts 8-bit characters
as two.
Reproduce code:
---------------
<?=str_pad('Na��o',10,'.'),'Representante';?>
Expected result:
----------------
Na��o.....Representante
Actual result:
--------------
Na��o...Representante
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28348&edit=1