Test: /ext/mbstring/tests/bug81011.phpt - Version 7.4.3        

Bug #81011 mb_convert_encoding removes references from arrays
Submitted: 2021-05-04 13:04:20 Modified: 2021-05-04 16:44:11
From: mvalihora Assigned: cmb
Status: Closed Package: mbstring related
PHP Version: 7.4.18 OS: All

There is 1 diff reported by users for this test.

Count Diff
2 (100%)
031+ 032+ Warning: mb_convert_encoding(): Object is not supported in %s/bug81011.php on line 16 033+ array(1) { 034+ ["other"]=> 031- array(2) { 032- ["ads"]=> 034- [123]=> 035- array(3) { 036- ["name"]=> 037- string(4) "this" 038- ["id"]=> 039- int(444) 036+ [0]=> 037+ string(3) "one" 038+ [1]=> 039+ string(3) "two" 040+ } 041+ } 040- ["premium"]=> 041- int(0) 042- } 043- [234]=> 044- array(3) { 045- ["name"]=> 046- string(4) "that" 047- ["id"]=> 048- int(555) 049- ["premium"]=> 050- int(1) 051- } 052- } 053- ["other"]=> 054- array(2) { 055- [0]=> 056- string(3) "one" 057- [1]=> 058- string(3) "two" 059- } 060- }