php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #79787 mb_strimwidth does not trim string
Submitted: 2020-07-04 14:08 UTC Modified: -
From: x dot xiang at outlook dot com Assigned:
Status: Closed Package: mbstring related
PHP Version: Irrelevant OS: All
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: x dot xiang at outlook dot com
New email:
PHP Version: OS:

 

 [2020-07-04 14:08 UTC] x dot xiang at outlook dot com
Description:
------------
When the string end with full-width character and its width is one greater than the desired trimming width,trimmaker is alse a half-width character, which will cause mb_strimwidth not to trim.

Affects all stable versions of PHP.

Test script:
---------------
<?php
echo mb_strimwidth("一二三", 0, 4, '.', 'UTF-8')."\n";
echo mb_strimwidth("一二三", 0, 5, '.', 'UTF-8')."\n";
echo mb_strimwidth("一二三", 0, 6, '.', 'UTF-8')."\n";
echo mb_strimwidth("abcdef", 0, 4, '.', 'UTF-8')."\n";
echo mb_strimwidth("abcdef", 0, 5, '.', 'UTF-8')."\n";
echo mb_strimwidth("abcdef", 0, 6, '.', 'UTF-8')."\n";

Expected result:
----------------
一.
一二.
一二三
abc.
abcd.
abcdef

Actual result:
--------------
一.
一二三
一二三
abc.
abcd.
abcdef

Patches

Add a Patch

Pull Requests

Pull requests:

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-07-04 14:22 UTC] x dot xiang at outlook dot com
The following pull request has been associated:

Patch Name: Fix bug #79787 : mb_strimwidth does not trim string
On GitHub:  https://github.com/php/php-src/pull/5807
Patch:      https://github.com/php/php-src/pull/5807.patch
 [2020-07-08 09:23 UTC] nikic@php.net
Automatic comment on behalf of x.xiang@outlook.com
Revision: http://git.php.net/?p=php-src.git;a=commit;h=3d5de7d74660b1ba6ae92a91581f7a50573554dc
Log: Fix bug #79787
 [2020-07-08 09:23 UTC] nikic@php.net
-Status: Open +Status: Closed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 15:01:28 2024 UTC