php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28348 str_pad counts unicode characters as two
Submitted: 2004-05-10 13:19 UTC Modified: 2004-05-10 15:54 UTC
From: shy at weblab dot pt Assigned:
Status: Not a bug Package: Output Control
PHP Version: 4.3.4 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
29 + 32 = ?
Subscribe to this entry?

 
 [2004-05-10 13:19 UTC] 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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-05-10 15:54 UTC] amt@php.net
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')));
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 04:01:27 2024 UTC