3v4l.org

run code in 300+ PHP versions simultaneously
<?php $configArray = array( 'nominal' => array( 'before' => array( 0 => 'subtotal', ), 'after' => array(), '_code' => 'nominal', ), 'subtotal' => array( 'after' => array( 0 => 'nominal', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'subtotal', ), 'shipping' => array( 'after' => array( 0 => 'subtotal', 1 => 'freeshipping', 2 => 'tax_subtotal', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'shipping', ), 'grand_total' => array( 'after' => array( 0 => 'subtotal', ), 'before' => array(), '_code' => 'grand_total', ), 'msrp' => array( 'before' => array(), 'after' => array(), '_code' => 'msrp', ), 'freeshipping' => array( 'after' => array( 0 => 'subtotal', ), 'before' => array( 0 => 'tax_subtotal', 1 => 'shipping', ), '_code' => 'freeshipping', ), 'discount' => array( 'after' => array( 0 => 'subtotal', 1 => 'shipping', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'discount', ), 'tax_subtotal' => array( 'after' => array( 0 => 'freeshipping', ), 'before' => array( 0 => 'tax', 1 => 'discount', ), '_code' => 'tax_subtotal', ), 'tax_shipping' => array( 'after' => array( 0 => 'shipping', 1 => 'tax_subtotal', ), 'before' => array( 0 => 'tax', 1 => 'discount', ), '_code' => 'tax_shipping', ), 'tax' => array( 'after' => array( 0 => 'subtotal', 1 => 'shipping', 2 => 'discount', ), 'before' => array( 0 => 'grand_total', ), '_code' => 'tax', ), 'vaimo_klarna_fee' => array( 'after' => array( 0 => 'subtotal', 1 => 'discount', ), 'before' => array( 0 => 'shipping', 1 => 'tax', 2 => 'grand_total', ), 'renderer' => 'klarna/checkout_fee', '_code' => 'vaimo_klarna_fee', ), ); function compareTotals($a, $b) { $aCode = $a['_code']; $bCode = $b['_code']; if (in_array($aCode, $b['after']) || in_array($bCode, $a['before'])) { $res = -1; } elseif (in_array($bCode, $a['after']) || in_array($aCode, $b['before'])) { $res = 1; } else { $res = 0; } return $res; } reset($configArray); $element = current($configArray); foreach ($configArray as $code => $data) { foreach ($data['before'] as $beforeCode) { if (!isset($configArray[$beforeCode])) { continue; } $configArray[$code]['before'] = array_unique(array_merge( $configArray[$code]['before'], $configArray[$beforeCode]['before'] )); $configArray[$beforeCode]['after'] = array_merge( $configArray[$beforeCode]['after'], array($code), $data['after'] ); $configArray[$beforeCode]['after'] = array_unique($configArray[$beforeCode]['after']); } foreach ($data['after'] as $afterCode) { if (!isset($configArray[$afterCode])) { continue; } $configArray[$code]['after'] = array_unique(array_merge( $configArray[$code]['after'], $configArray[$afterCode]['after'] )); $configArray[$afterCode]['before'] = array_merge( $configArray[$afterCode]['before'], array($code), $data['before'] ); $configArray[$afterCode]['before'] = array_unique($configArray[$afterCode]['before']); } } uasort($configArray, 'compareTotals'); print_r($configArray);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [nominal] => Array ( [before] => Array ( [0] => subtotal [1] => grand_total ) [after] => Array ( ) [_code] => nominal ) [subtotal] => Array ( [after] => Array ( [0] => nominal ) [before] => Array ( [0] => grand_total [1] => shipping [2] => freeshipping [3] => tax_subtotal [4] => discount [5] => tax [6] => vaimo_klarna_fee ) [_code] => subtotal ) [shipping] => Array ( [after] => Array ( [0] => subtotal [1] => freeshipping [2] => tax_subtotal [3] => nominal [4] => vaimo_klarna_fee [6] => discount ) [before] => Array ( [0] => grand_total [1] => discount [2] => tax_shipping [3] => tax ) [_code] => shipping ) [grand_total] => Array ( [after] => Array ( [0] => subtotal [1] => nominal [2] => shipping [3] => freeshipping [4] => tax_subtotal [5] => discount [6] => tax [7] => vaimo_klarna_fee ) [before] => Array ( ) [_code] => grand_total ) [msrp] => Array ( [before] => Array ( ) [after] => Array ( ) [_code] => msrp ) [freeshipping] => Array ( [after] => Array ( [0] => subtotal [1] => nominal ) [before] => Array ( [0] => tax_subtotal [1] => shipping [2] => grand_total [3] => tax [4] => discount ) [_code] => freeshipping ) [tax_subtotal] => Array ( [after] => Array ( [0] => freeshipping [1] => subtotal [3] => nominal ) [before] => Array ( [0] => tax [1] => discount [2] => shipping [3] => grand_total [4] => tax_shipping ) [_code] => tax_subtotal ) [tax_shipping] => Array ( [after] => Array ( [0] => shipping [1] => tax_subtotal [2] => subtotal [3] => freeshipping [4] => nominal ) [before] => Array ( [0] => tax [1] => discount [2] => grand_total ) [_code] => tax_shipping ) [discount] => Array ( [after] => Array ( [0] => subtotal [1] => shipping [2] => nominal [3] => freeshipping [4] => tax_subtotal [5] => tax_shipping ) [before] => Array ( [0] => grand_total [1] => tax [2] => vaimo_klarna_fee [3] => shipping ) [_code] => discount ) [vaimo_klarna_fee] => Array ( [after] => Array ( [0] => subtotal [1] => discount [2] => nominal [4] => shipping [6] => freeshipping [7] => tax_subtotal [8] => tax_shipping ) [before] => Array ( [0] => shipping [1] => tax [2] => grand_total [3] => discount [4] => tax_shipping ) [renderer] => klarna/checkout_fee [_code] => vaimo_klarna_fee ) [tax] => Array ( [after] => Array ( [0] => subtotal [1] => shipping [2] => discount [3] => tax_subtotal [4] => freeshipping [5] => tax_shipping [6] => nominal [7] => vaimo_klarna_fee ) [before] => Array ( [0] => grand_total ) [_code] => tax ) )

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:
40.79 ms | 413 KiB | 8 Q