3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data = array(array('fieldName' => 'email', 'type' => 'string'), array('fieldName' => 'isActive', 'type' => 'boolean'), array('fieldName' => 'password', 'type' => 'string'), array('fieldName' => 'username', 'type' => 'string'), array('fieldName' => 'id', 'type' => 'integer')); usort($data, function ($a, $b) { if ($a['fieldName'] == 'username' || $b['fieldName'] == 'password') return -1; elseif ($a['fieldName'] == 'password' || $b['fieldName'] == 'username') return 1; else return 0; }); print_r($data);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [fieldName] => username [type] => string ) [1] => Array ( [fieldName] => email [type] => string ) [2] => Array ( [fieldName] => isActive [type] => boolean ) [3] => Array ( [fieldName] => id [type] => integer ) [4] => Array ( [fieldName] => password [type] => string ) )

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:
144.91 ms | 407 KiB | 5 Q