|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2017-09-12 14:07 UTC] cmb@php.net
-Status: Open
+Status: Verified
-Package: I18N and L10N related
+Package: intl
[2017-09-12 14:07 UTC] cmb@php.net
[2021-06-14 16:18 UTC] cmb@php.net
[2021-06-14 16:25 UTC] cmb@php.net
-Assigned To:
+Assigned To: cmb
[2021-06-15 09:32 UTC] cmb@php.net
-Type: Bug
+Type: Documentation Problem
[2021-06-15 09:32 UTC] cmb@php.net
[2021-06-15 09:35 UTC] git@php.net
[2021-06-15 09:35 UTC] git@php.net
-Status: Verified
+Status: Closed
[2021-06-15 11:35 UTC] git@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 23:00:02 2025 UTC |
Description: ------------ hi, just a "cosmetic problem" probably are affected variants and privates too bad result: <?php $arr = array( 'language'=>'en' , 'script' =>'Hans' , 'region' =>'CN' 'extlang' => array('a','b','c','d','e','f') ); echo locale_compose( $arr ); ?> good result: <?php $arr = array( 'language'=>'en' , 'script' =>'Hans' , 'region' =>'CN' 'extlang0' => 'a', 'extlang1' => 'b', 'extlang2' => 'c', 'extlang3' => 'd' ); echo locale_compose( $arr ); ?>