3v4l.org

run code in 300+ PHP versions simultaneously
<?php $allLanguages = [ 'en' => ['locale' => 'en_US', 'code' => 'en', 'displayName' => 'English'], 'sv' => ['locale' => 'sv_SE', 'code' => 'sv', 'displayName' => 'Swedish'], 'de' => ['locale' => 'de_DE', 'code' => 'de', 'displayName' => 'German'] ]; $currentLanguage = 'sv'; $allLanguages = array_values([$currentLanguage => $allLanguages[$currentLanguage]] + $allLanguages); var_dump($allLanguages);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(3) { ["locale"]=> string(5) "sv_SE" ["code"]=> string(2) "sv" ["displayName"]=> string(7) "Swedish" } [1]=> array(3) { ["locale"]=> string(5) "en_US" ["code"]=> string(2) "en" ["displayName"]=> string(7) "English" } [2]=> array(3) { ["locale"]=> string(5) "de_DE" ["code"]=> string(2) "de" ["displayName"]=> string(6) "German" } }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
58.2 ms | 402 KiB | 8 Q