Edit report at https://bugs.php.net/bug.php?id=52568&edit=1

 ID:                 52568
 Comment by:         willem at stuursma dot name
 Reported by:        hananassis at walla dot com
 Summary:            Weird length in the end of the string
 Status:             Feedback
 Type:               Bug
 Package:            *Unicode Issues
 Operating System:   CentOS
 PHP Version:        5.2.14
 Block user comment: N
 Private report:     N

 New Comment:

This is because substr() cuts strings at bytes and not at characters, use 
mb_substr() if you want to cut strings at character positions.


Previous Comments:
------------------------------------------------------------------------
[2010-08-09 10:38:48] [email protected]

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.



------------------------------------------------------------------------
[2010-08-09 10:36:50] hananassis at walla dot com

Description:
------------
For some reason, when you try to cut the string (in hebrew lenguage at least) 
sometimes you get a wierd box (�) at the end of the string.

the file the database working under UTF-8.

when you test the function at windows-1255 everythings fine.

Test script:
---------------
<?php
echo "<hr />";
echo trim(substr($string,0,10)).'...';
echo "<hr />";
?>

Expected result:
----------------
Not to see the weird box at the end of the string.



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=52568&edit=1

Reply via email to